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