|
| 1 | +# C++ files |
| 2 | +Language: Cpp |
| 3 | +BasedOnStyle: Google |
| 4 | +AccessModifierOffset: -4 |
| 5 | +AlignAfterOpenBracket: Align |
| 6 | +AlignConsecutiveMacros: true |
| 7 | +AlignConsecutiveAssignments: true |
| 8 | +AlignConsecutiveDeclarations: false |
| 9 | +AlignEscapedNewlines: Left |
| 10 | +AlignOperands: true |
| 11 | +AlignTrailingComments: true |
| 12 | +AllowAllArgumentsOnNextLine: false |
| 13 | +AllowAllConstructorInitializersOnNextLine: true |
| 14 | +AllowAllParametersOfDeclarationOnNextLine: false |
| 15 | +AllowShortBlocksOnASingleLine: false |
| 16 | +AllowShortCaseLabelsOnASingleLine: true |
| 17 | +AllowShortFunctionsOnASingleLine: Empty |
| 18 | +AllowShortLambdasOnASingleLine: All |
| 19 | +AllowShortIfStatementsOnASingleLine: Never |
| 20 | +AllowShortLoopsOnASingleLine: false |
| 21 | +AlwaysBreakAfterReturnType: None |
| 22 | +AlwaysBreakBeforeMultilineStrings: true |
| 23 | +AlwaysBreakTemplateDeclarations: Yes |
| 24 | +BinPackArguments: false |
| 25 | +BinPackParameters: false |
| 26 | +BraceWrapping: |
| 27 | + AfterCaseLabel: false |
| 28 | + AfterClass: false |
| 29 | + AfterControlStatement: false |
| 30 | + AfterEnum: false |
| 31 | + AfterFunction: false |
| 32 | + AfterNamespace: false |
| 33 | + AfterStruct: false |
| 34 | + AfterUnion: false |
| 35 | + AfterExternBlock: false |
| 36 | + BeforeCatch: true |
| 37 | + BeforeElse: true |
| 38 | + IndentBraces: false |
| 39 | + SplitEmptyFunction: false |
| 40 | + SplitEmptyRecord: false |
| 41 | + SplitEmptyNamespace: false |
| 42 | +BreakBeforeBinaryOperators: NonAssignment |
| 43 | +BreakBeforeBraces: Custom |
| 44 | +BreakInheritanceList: BeforeComma |
| 45 | +BreakBeforeTernaryOperators: true |
| 46 | +BreakConstructorInitializers: BeforeComma |
| 47 | +BreakStringLiterals: true |
| 48 | +ColumnLimit: 120 |
| 49 | +CompactNamespaces: false |
| 50 | +ConstructorInitializerAllOnOneLineOrOnePerLine: true |
| 51 | +ConstructorInitializerIndentWidth: 4 |
| 52 | +ContinuationIndentWidth: 4 |
| 53 | +Cpp11BracedListStyle: true |
| 54 | +DerivePointerAlignment: false |
| 55 | +FixNamespaceComments: true |
| 56 | +IncludeBlocks: Regroup |
| 57 | +IndentCaseLabels: true |
| 58 | +IndentPPDirectives: BeforeHash |
| 59 | +IndentWrappedFunctionNames: true |
| 60 | +IndentWidth: 4 |
| 61 | +KeepEmptyLinesAtTheStartOfBlocks: true |
| 62 | +MaxEmptyLinesToKeep: 2 |
| 63 | +NamespaceIndentation: Inner |
| 64 | +PointerAlignment: Left |
| 65 | +ReflowComments: true |
| 66 | +SortIncludes: true |
| 67 | +SortUsingDeclarations: true |
| 68 | +SpaceAfterCStyleCast: true |
| 69 | +SpaceAfterLogicalNot: false |
| 70 | +SpaceAfterTemplateKeyword: true |
| 71 | +SpaceBeforeAssignmentOperators: true |
| 72 | +SpaceBeforeCpp11BracedList: false |
| 73 | +SpaceBeforeCtorInitializerColon: true |
| 74 | +SpaceBeforeInheritanceColon: true |
| 75 | +SpaceBeforeParens: ControlStatements |
| 76 | +SpaceBeforeRangeBasedForLoopColon: true |
| 77 | +SpaceInEmptyParentheses: false |
| 78 | +SpacesBeforeTrailingComments: 2 |
| 79 | +SpacesInAngles: false |
| 80 | +SpacesInCStyleCastParentheses: false |
| 81 | +SpacesInContainerLiterals: false |
| 82 | +SpacesInParentheses: false |
| 83 | +SpacesInSquareBrackets: false |
| 84 | +Standard: Cpp11 |
| 85 | +TabWidth: 4 |
| 86 | +UseTab: Never |
0 commit comments