|
1 | 1 | ---
|
2 |
| -BasedOnStyle: LLVM |
| 2 | +Language: Cpp |
| 3 | +AccessModifierOffset: -2 |
3 | 4 | AlignAfterOpenBracket: Align
|
4 |
| -AlignConsecutiveMacros: 'true' |
5 |
| -AlignConsecutiveAssignments: 'true' |
6 |
| -AlignConsecutiveDeclarations: 'false' |
| 5 | +AlignConsecutiveMacros: true |
| 6 | +AlignConsecutiveAssignments: true |
| 7 | +AlignConsecutiveDeclarations: false |
7 | 8 | AlignEscapedNewlines: Right
|
8 |
| -AlignOperands: 'true' |
9 |
| -AlignTrailingComments: 'true' |
10 |
| -AllowAllArgumentsOnNextLine: 'true' |
11 |
| -AllowAllConstructorInitializersOnNextLine: 'true' |
12 |
| -AllowAllParametersOfDeclarationOnNextLine: 'false' |
13 |
| -AllowShortBlocksOnASingleLine: 'false' |
14 |
| -AllowShortCaseLabelsOnASingleLine: 'false' |
| 9 | +AlignOperands: true |
| 10 | +AlignTrailingComments: true |
| 11 | +AllowAllArgumentsOnNextLine: true |
| 12 | +AllowAllConstructorInitializersOnNextLine: true |
| 13 | +AllowAllParametersOfDeclarationOnNextLine: false |
| 14 | +AllowShortBlocksOnASingleLine: Never |
| 15 | +AllowShortCaseLabelsOnASingleLine: false |
15 | 16 | AllowShortFunctionsOnASingleLine: None
|
| 17 | +AllowShortLambdasOnASingleLine: All |
16 | 18 | AllowShortIfStatementsOnASingleLine: Never
|
17 |
| -AllowShortLoopsOnASingleLine: 'false' |
| 19 | +AllowShortLoopsOnASingleLine: false |
| 20 | +AlwaysBreakAfterDefinitionReturnType: None |
18 | 21 | AlwaysBreakAfterReturnType: None
|
19 |
| -AlwaysBreakBeforeMultilineStrings: 'true' |
20 |
| -BinPackArguments: 'true' |
21 |
| -BinPackParameters: 'false' |
| 22 | +AlwaysBreakBeforeMultilineStrings: true |
| 23 | +AlwaysBreakTemplateDeclarations: MultiLine |
| 24 | +BinPackArguments: true |
| 25 | +BinPackParameters: false |
| 26 | +BraceWrapping: |
| 27 | + AfterCaseLabel: false |
| 28 | + AfterClass: false |
| 29 | + AfterControlStatement: false |
| 30 | + AfterEnum: false |
| 31 | + AfterFunction: false |
| 32 | + AfterNamespace: false |
| 33 | + AfterObjCDeclaration: false |
| 34 | + AfterStruct: false |
| 35 | + AfterUnion: false |
| 36 | + AfterExternBlock: false |
| 37 | + BeforeCatch: false |
| 38 | + BeforeElse: false |
| 39 | + IndentBraces: false |
| 40 | + SplitEmptyFunction: true |
| 41 | + SplitEmptyRecord: true |
| 42 | + SplitEmptyNamespace: true |
| 43 | +BreakBeforeBinaryOperators: None |
22 | 44 | BreakBeforeBraces: Custom
|
23 |
| -BreakBeforeTernaryOperators: 'true' |
| 45 | +BreakBeforeInheritanceComma: false |
| 46 | +BreakInheritanceList: BeforeColon |
| 47 | +BreakBeforeTernaryOperators: true |
| 48 | +BreakConstructorInitializersBeforeComma: false |
24 | 49 | BreakConstructorInitializers: AfterColon
|
25 |
| -BreakStringLiterals: 'true' |
26 |
| -ColumnLimit: '80' |
27 |
| -DerivePointerAlignment: 'false' |
28 |
| -SortIncludes: 'false' |
29 |
| -IncludeBlocks: Preserve |
30 |
| -IndentCaseLabels: 'false' |
| 50 | +BreakAfterJavaFieldAnnotations: false |
| 51 | +BreakStringLiterals: true |
| 52 | +ColumnLimit: 80 |
| 53 | +CommentPragmas: '^ IWYU pragma:' |
| 54 | +CompactNamespaces: false |
| 55 | +ConstructorInitializerAllOnOneLineOrOnePerLine: false |
| 56 | +ConstructorInitializerIndentWidth: 4 |
| 57 | +ContinuationIndentWidth: 4 |
| 58 | +Cpp11BracedListStyle: true |
| 59 | +DeriveLineEnding: true |
| 60 | +DerivePointerAlignment: false |
| 61 | +DisableFormat: false |
| 62 | +ExperimentalAutoDetectBinPacking: false |
| 63 | +FixNamespaceComments: true |
| 64 | +ForEachMacros: |
| 65 | + - foreach |
| 66 | + - Q_FOREACH |
| 67 | + - BOOST_FOREACH |
| 68 | +IncludeBlocks: Preserve |
| 69 | +IncludeCategories: |
| 70 | + - Regex: '^"(llvm|llvm-c|clang|clang-c)/' |
| 71 | + Priority: 2 |
| 72 | + SortPriority: 0 |
| 73 | + - Regex: '^(<|"(gtest|gmock|isl|json)/)' |
| 74 | + Priority: 3 |
| 75 | + SortPriority: 0 |
| 76 | + - Regex: '.*' |
| 77 | + Priority: 1 |
| 78 | + SortPriority: 0 |
| 79 | +IncludeIsMainRegex: '(Test)?$' |
| 80 | +IncludeIsMainSourceRegex: '' |
| 81 | +IndentCaseLabels: false |
| 82 | +IndentGotoLabels: true |
31 | 83 | IndentPPDirectives: None
|
32 |
| -IndentWidth: '8' |
33 |
| -Language: Cpp |
34 |
| -MaxEmptyLinesToKeep: '3' |
| 84 | +IndentWidth: 8 |
| 85 | +IndentWrappedFunctionNames: false |
| 86 | +JavaScriptQuotes: Leave |
| 87 | +JavaScriptWrapImports: true |
| 88 | +KeepEmptyLinesAtTheStartOfBlocks: true |
| 89 | +MacroBlockBegin: '' |
| 90 | +MacroBlockEnd: '' |
| 91 | +MaxEmptyLinesToKeep: 3 |
| 92 | +NamespaceIndentation: None |
| 93 | +ObjCBinPackProtocolList: Auto |
| 94 | +ObjCBlockIndentWidth: 2 |
| 95 | +ObjCSpaceAfterProperty: false |
| 96 | +ObjCSpaceBeforeProtocolList: true |
| 97 | +PenaltyBreakAssignment: 2 |
| 98 | +PenaltyBreakBeforeFirstCallParameter: 19 |
| 99 | +PenaltyBreakComment: 300 |
| 100 | +PenaltyBreakFirstLessLess: 120 |
| 101 | +PenaltyBreakString: 1000 |
| 102 | +PenaltyBreakTemplateDeclaration: 10 |
| 103 | +PenaltyExcessCharacter: 1000000 |
| 104 | +PenaltyReturnTypeOnItsOwnLine: 60 |
35 | 105 | PointerAlignment: Right
|
36 |
| -ReflowComments: 'true' |
37 |
| -SpaceAfterCStyleCast: 'false' |
38 |
| -SpaceAfterLogicalNot: 'false' |
39 |
| -SpaceBeforeAssignmentOperators: 'true' |
40 |
| -SpaceBeforeCpp11BracedList: 'true' |
| 106 | +ReflowComments: true |
| 107 | +SortIncludes: false |
| 108 | +SortUsingDeclarations: true |
| 109 | +SpaceAfterCStyleCast: false |
| 110 | +SpaceAfterLogicalNot: false |
| 111 | +SpaceAfterTemplateKeyword: true |
| 112 | +SpaceBeforeAssignmentOperators: true |
| 113 | +SpaceBeforeCpp11BracedList: true |
| 114 | +SpaceBeforeCtorInitializerColon: true |
| 115 | +SpaceBeforeInheritanceColon: true |
41 | 116 | SpaceBeforeParens: ControlStatements
|
42 |
| -SpaceBeforeRangeBasedForLoopColon: 'true' |
43 |
| -SpaceInEmptyParentheses: 'false' |
44 |
| -SpacesBeforeTrailingComments: '2' |
45 |
| -SpacesInAngles: 'false' |
46 |
| -SpacesInCStyleCastParentheses: 'false' |
47 |
| -SpacesInContainerLiterals: 'false' |
48 |
| -SpacesInParentheses: 'false' |
49 |
| -SpacesInSquareBrackets: 'false' |
50 |
| -TabWidth: '8' |
51 |
| -UseTab: Never |
52 |
| - |
| 117 | +SpaceBeforeRangeBasedForLoopColon: true |
| 118 | +SpaceInEmptyBlock: false |
| 119 | +SpaceInEmptyParentheses: false |
| 120 | +SpacesBeforeTrailingComments: 2 |
| 121 | +SpacesInAngles: false |
| 122 | +SpacesInConditionalStatement: false |
| 123 | +SpacesInContainerLiterals: false |
| 124 | +SpacesInCStyleCastParentheses: false |
| 125 | +SpacesInParentheses: false |
| 126 | +SpacesInSquareBrackets: false |
| 127 | +SpaceBeforeSquareBrackets: false |
| 128 | +Standard: Latest |
| 129 | +StatementMacros: |
| 130 | + - Q_UNUSED |
| 131 | + - QT_REQUIRE_VERSION |
| 132 | +TabWidth: 8 |
| 133 | +UseCRLF: false |
| 134 | +UseTab: Never |
53 | 135 | ...
|
| 136 | + |
0 commit comments