123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- ---
- Language: Cpp
- AccessModifierOffset: -4
- AlignAfterOpenBracket: Align
- AlignTrailingComments: true
- AllowAllParametersOfDeclarationOnNextLine: false
- AllowShortBlocksOnASingleLine: false
- AllowShortCaseLabelsOnASingleLine: false
- AllowShortFunctionsOnASingleLine: false
- AllowShortIfStatementsOnASingleLine: false
- AllowShortLoopsOnASingleLine: false
- AlwaysBreakBeforeMultilineStrings: false
- AlwaysBreakTemplateDeclarations: true
- BinPackArguments: true
- BinPackParameters: true
- BraceWrapping:
- AfterClass: false
- AfterControlStatement: false
- AfterEnum: false
- AfterFunction: true
- AfterNamespace: false
- AfterObjCDeclaration: false
- AfterStruct: false
- AfterUnion: false
- AfterExternBlock: false
- BeforeCatch: false
- BeforeElse: false
- IndentBraces: false
- SplitEmptyFunction: true
- SplitEmptyRecord: true
- SplitEmptyNamespace: true
- BreakBeforeBinaryOperators: None
- BreakBeforeBraces: WebKit
- AlignEscapedNewlines: Left
- BreakBeforeTernaryOperators: true
- BreakStringLiterals: false
- ColumnLimit: 120
- CommentPragmas: '^lint|^\*<'
- CompactNamespaces: false
- ConstructorInitializerAllOnOneLineOrOnePerLine: true
- ConstructorInitializerIndentWidth: 4
- ContinuationIndentWidth: 4
- Cpp11BracedListStyle: false
- DerivePointerAlignment: false
- PointerAlignment: Right
- DisableFormat: false
- ExperimentalAutoDetectBinPacking: false
- FixNamespaceComments: true
- IndentCaseLabels: true
- IndentPPDirectives: None
- IndentWidth: 4
- IndentWrappedFunctionNames: false
- MacroBlockIndentation: false
- KeepEmptyLinesAtTheStartOfBlocks: false
- MacroBlockBegin: "\
- ^ *PROG *$|\
- ^ *PROC *$"
- MacroBlockEnd: "\
- ^ *END_PROG *$|\
- ^ *END_PROC *$|\
- ^ *END_DEFAULT_PROC *$"
- TryBlock: "\
- ^ *MIT_BEGIN *$|\
- ^ *MIT_CATCH_ALL *$|\
- ^ *__TRY *$|\
- ^ *__TR_CATCH *$|\
- ^ *__TR_TRY *$"
- CatchBlock: "\
- ^ *__CATCH *$"
- MaxEmptyLinesToKeep: 1
- NamespaceIndentation: None
- PenaltyBreakBeforeFirstCallParameter: 120
- PenaltyBreakComment: 30
- PenaltyBreakString: 1000
- PenaltyBreakFirstLessLess: 120
- PenaltyExcessCharacter: 100
- PenaltyReturnTypeOnItsOwnLine: 60
- PenaltyBreakAssignment: 30
- SortIncludes: false
- SpaceAfterCStyleCast: false
- SpaceAfterTemplateKeyword: true
- SpaceBeforeAssignmentOperators: true
- SpaceBeforeParens: ControlStatements
- SpaceInEmptyParentheses: false
- SpacesBeforeTrailingComments: 2
- SpacesInAngles: false
- SpaceAfterVosVoid: false
- VoidPragmas: '^JsVoid|^VOS_VOID|^VOID'
- SpacesInCStyleCastParentheses: false
- SpacesInParentheses: false
- SpacesInSquareBrackets: false
- Standard: Cpp03
- TabWidth: 4
- UseTab: Never
- ...
|