|
| 1 | +--- |
| 2 | +Language: Cpp |
| 3 | +BasedOnStyle: LLVM |
| 4 | +AccessModifierOffset: -4 |
| 5 | +AlignAfterOpenBracket: DontAlign |
| 6 | +AlignEscapedNewlines: Left |
| 7 | +AlignTrailingComments: false |
| 8 | +AllowAllParametersOfDeclarationOnNextLine: true |
| 9 | +AllowShortCaseLabelsOnASingleLine: false |
| 10 | +AllowShortFunctionsOnASingleLine: Empty |
| 11 | +AllowShortIfStatementsOnASingleLine: false |
| 12 | +AllowShortLoopsOnASingleLine: false |
| 13 | +AlwaysBreakBeforeMultilineStrings: false |
| 14 | +AlwaysBreakTemplateDeclarations: No |
| 15 | +BinPackArguments: true |
| 16 | +BinPackParameters: true |
| 17 | +BraceWrapping: |
| 18 | + AfterClass: false |
| 19 | + AfterControlStatement: false |
| 20 | + AfterEnum: false |
| 21 | + AfterFunction: true |
| 22 | + AfterNamespace: false |
| 23 | + AfterObjCDeclaration: false |
| 24 | + AfterStruct: false |
| 25 | + AfterUnion: false |
| 26 | + BeforeCatch: false |
| 27 | + BeforeElse: false |
| 28 | + IndentBraces: false |
| 29 | + SplitEmptyFunction: true |
| 30 | + SplitEmptyRecord: true |
| 31 | + SplitEmptyNamespace: true |
| 32 | +BreakBeforeBinaryOperators: All |
| 33 | +BreakBeforeTernaryOperators: true |
| 34 | +BreakConstructorInitializers: BeforeComma |
| 35 | +BreakStringLiterals: true |
| 36 | +ColumnLimit: 120 |
| 37 | +CommentPragmas: "suppress" |
| 38 | +CompactNamespaces: false |
| 39 | +ConstructorInitializerAllOnOneLineOrOnePerLine: false |
| 40 | +ConstructorInitializerIndentWidth: 4 |
| 41 | +ContinuationIndentWidth: 4 |
| 42 | +Cpp11BracedListStyle: true |
| 43 | +FixNamespaceComments: false |
| 44 | +IncludeCategories: |
| 45 | + - Regex: '^.*(precomp|pch|stdafx)' |
| 46 | + Priority: -1 |
| 47 | + - Regex: '^".*"' |
| 48 | + Priority: 1 |
| 49 | + - Regex: '^<.*>' |
| 50 | + Priority: 2 |
| 51 | + - Regex: '.*' |
| 52 | + Priority: 3 |
| 53 | +IndentCaseLabels: false |
| 54 | +IndentWidth: 2 |
| 55 | +KeepEmptyLinesAtTheStartOfBlocks: false |
| 56 | +MacroBlockBegin: '' |
| 57 | +MacroBlockEnd: '' |
| 58 | +MaxEmptyLinesToKeep: 1 |
| 59 | +NamespaceIndentation: All |
| 60 | +PointerAlignment: Right |
| 61 | +ReflowComments: false |
| 62 | +SortIncludes: true |
| 63 | +SpaceAfterTemplateKeyword: false |
| 64 | +SpaceInEmptyBlock : true |
| 65 | +SpaceInEmptyParentheses: false |
| 66 | +SpacesBeforeTrailingComments: 1 |
| 67 | + |
| 68 | +--- |
0 commit comments