|
1 | 1 | ---
|
2 | 2 | BasedOnStyle: WebKit
|
3 |
| -ColumnLimit: '120' |
4 |
| -# IndentWidth: '4' |
5 |
| -# TabWidth: '4' |
6 |
| -# UseTab: Always |
| 3 | +AlignAfterOpenBracket: Align |
| 4 | +AlignConsecutiveMacros: 'true' |
| 5 | +AlignConsecutiveAssignments: 'true' |
| 6 | +AlignConsecutiveDeclarations: 'false' |
| 7 | +AlignEscapedNewlines: Left |
| 8 | +AlignOperands: 'true' |
| 9 | +AlignTrailingComments: 'true' |
| 10 | +AllowAllArgumentsOnNextLine: 'true' |
| 11 | +AllowAllConstructorInitializersOnNextLine: 'true' |
| 12 | +AllowAllParametersOfDeclarationOnNextLine: 'true' |
| 13 | +AllowShortBlocksOnASingleLine: 'true' |
| 14 | +AllowShortCaseLabelsOnASingleLine: 'false' |
| 15 | +AllowShortFunctionsOnASingleLine: All |
| 16 | +AllowShortIfStatementsOnASingleLine: Never |
| 17 | +AllowShortLambdasOnASingleLine: None |
| 18 | +AllowShortLoopsOnASingleLine: 'false' |
| 19 | +AlwaysBreakAfterReturnType: None |
| 20 | +AlwaysBreakBeforeMultilineStrings: 'false' |
| 21 | +AlwaysBreakTemplateDeclarations: 'No' |
| 22 | +BinPackArguments: 'true' |
| 23 | +BinPackParameters: 'true' |
| 24 | +BreakAfterJavaFieldAnnotations: 'true' |
| 25 | +BreakBeforeBinaryOperators: NonAssignment |
| 26 | +BreakBeforeBraces: Allman |
| 27 | +BreakBeforeTernaryOperators: 'true' |
| 28 | +BreakConstructorInitializers: AfterColon |
| 29 | +BreakInheritanceList: AfterColon |
| 30 | +ColumnLimit: '150' |
| 31 | +CompactNamespaces: 'false' |
| 32 | +ConstructorInitializerAllOnOneLineOrOnePerLine: 'false' |
| 33 | +Cpp11BracedListStyle: 'false' |
| 34 | +DerivePointerAlignment: 'false' |
| 35 | +DisableFormat: 'false' |
| 36 | +FixNamespaceComments: 'false' |
| 37 | +IncludeBlocks: Preserve |
| 38 | +IndentCaseLabels: 'true' |
| 39 | +IndentPPDirectives: BeforeHash |
| 40 | +IndentWidth: '4' |
| 41 | +IndentWrappedFunctionNames: 'true' |
| 42 | +KeepEmptyLinesAtTheStartOfBlocks: 'false' |
| 43 | +Language: Cpp |
| 44 | +MaxEmptyLinesToKeep: '1' |
| 45 | +PointerAlignment: Left |
| 46 | +ReflowComments: 'true' |
| 47 | +SortIncludes: 'true' |
| 48 | +SpaceAfterCStyleCast: 'false' |
| 49 | +SpaceAfterLogicalNot: 'false' |
| 50 | +SpaceAfterTemplateKeyword: 'false' |
| 51 | +SpaceBeforeAssignmentOperators: 'true' |
| 52 | +SpaceBeforeCpp11BracedList: 'false' |
| 53 | +SpaceBeforeCtorInitializerColon: 'false' |
| 54 | +SpaceBeforeParens: Never |
| 55 | +SpaceBeforeRangeBasedForLoopColon: 'false' |
| 56 | +SpaceInEmptyParentheses: 'false' |
| 57 | +SpacesInAngles: 'false' |
| 58 | +SpacesInCStyleCastParentheses: 'false' |
| 59 | +SpacesInParentheses: 'false' |
| 60 | +SpacesInSquareBrackets: 'false' |
| 61 | +TabWidth: '4' |
| 62 | +UseTab: Never |
7 | 63 |
|
8 | 64 | ...
|
0 commit comments