|
1 | 1 | --- |
2 | 2 | AccessModifierOffset: -2 |
3 | 3 | AlignAfterOpenBracket: AlwaysBreak |
4 | | -AlignArrayOfStructures: None |
5 | | -AlignConsecutiveMacros: |
6 | | - Enabled: true |
7 | | - AcrossEmptyLines: true |
8 | | - AcrossComments: true |
9 | | -AlignConsecutiveAssignments: None |
10 | | -AlignConsecutiveBitFields: |
11 | | - Enabled: true |
12 | | - AcrossEmptyLines: true |
13 | | - AcrossComments: true |
14 | | -AlignConsecutiveDeclarations: None |
| 4 | +AlignConsecutiveAssignments: false |
| 5 | +AlignConsecutiveDeclarations: false |
15 | 6 | AlignEscapedNewlines: Right |
16 | | -AlignOperands: Align |
| 7 | +AlignOperands: true |
17 | 8 | SortIncludes: false # don't, Windows headers need a fixed include order |
18 | | -InsertBraces: true |
19 | 9 | AlignTrailingComments: true |
20 | | -AllowAllArgumentsOnNextLine: true |
21 | 10 | AllowAllParametersOfDeclarationOnNextLine: true |
22 | | -AllowShortEnumsOnASingleLine: true |
23 | | -AllowShortBlocksOnASingleLine: Empty |
| 11 | +AllowShortBlocksOnASingleLine: false |
24 | 12 | AllowShortCaseLabelsOnASingleLine: true |
25 | 13 | AllowShortFunctionsOnASingleLine: All |
26 | | -AllowShortLambdasOnASingleLine: All |
27 | | -AllowShortIfStatementsOnASingleLine: Never |
| 14 | +AllowShortIfStatementsOnASingleLine: false |
28 | 15 | AllowShortLoopsOnASingleLine: false |
29 | 16 | AlwaysBreakAfterDefinitionReturnType: None |
30 | 17 | AlwaysBreakAfterReturnType: AllDefinitions |
31 | 18 | AlwaysBreakBeforeMultilineStrings: false |
32 | | -AlwaysBreakTemplateDeclarations: Yes |
33 | | -AttributeMacros: |
34 | | - - __capability |
| 19 | +AlwaysBreakTemplateDeclarations: true |
35 | 20 | BinPackArguments: true |
36 | 21 | BinPackParameters: true |
37 | | -BraceWrapping: |
38 | | - AfterCaseLabel: false |
39 | | - AfterClass: false |
40 | | - AfterControlStatement: Never |
41 | | - AfterEnum: false |
42 | | - AfterFunction: false |
43 | | - AfterNamespace: false |
44 | | - AfterObjCDeclaration: false |
45 | | - AfterStruct: false |
46 | | - AfterUnion: false |
47 | | - AfterExternBlock: false |
48 | | - BeforeCatch: false |
49 | | - BeforeElse: false |
50 | | - BeforeLambdaBody: false |
51 | | - BeforeWhile: false |
52 | | - IndentBraces: false |
53 | | - SplitEmptyFunction: true |
54 | | - SplitEmptyRecord: true |
55 | | - SplitEmptyNamespace: true |
56 | 22 | BreakBeforeBinaryOperators: NonAssignment |
57 | | -BreakBeforeConceptDeclarations: true |
58 | 23 | BreakBeforeBraces: Attach |
59 | 24 | BreakBeforeInheritanceComma: false |
60 | 25 | BreakInheritanceList: BeforeColon |
61 | 26 | BreakBeforeTernaryOperators: true |
62 | 27 | BreakConstructorInitializersBeforeComma: false |
63 | | -BreakConstructorInitializers: BeforeColon |
64 | 28 | BreakAfterJavaFieldAnnotations: false |
65 | 29 | BreakStringLiterals: true |
66 | | -ColumnLimit: 130 |
| 30 | +ColumnLimit: 95 |
67 | 31 | CommentPragmas: "^ IWYU pragma:" |
68 | | -QualifierAlignment: Leave |
69 | 32 | CompactNamespaces: false |
70 | 33 | ConstructorInitializerIndentWidth: 4 |
71 | 34 | ContinuationIndentWidth: 4 |
72 | 35 | Cpp11BracedListStyle: true |
73 | | -DeriveLineEnding: true |
74 | 36 | DerivePointerAlignment: false |
75 | 37 | DisableFormat: false |
76 | | -EmptyLineAfterAccessModifier: Never |
77 | | -EmptyLineBeforeAccessModifier: LogicalBlock |
78 | | -ExperimentalAutoDetectBinPacking: false |
79 | | -PackConstructorInitializers: BinPack |
80 | 38 | BasedOnStyle: "" |
81 | 39 | ConstructorInitializerAllOnOneLineOrOnePerLine: false |
82 | | -AllowAllConstructorInitializersOnNextLine: true |
83 | 40 | FixNamespaceComments: true |
84 | | -ForEachMacros: |
85 | | - - foreach |
86 | | - - Q_FOREACH |
87 | | - - BOOST_FOREACH |
88 | | -IfMacros: |
89 | | - - KJ_IF_MAYBE |
90 | 41 | IncludeBlocks: Preserve |
91 | | -IncludeCategories: |
92 | | - - Regex: "^<(.*)>" |
93 | | - Priority: 0 |
94 | | - - Regex: '^"(.*)"' |
95 | | - Priority: 1 |
96 | | - - Regex: "(.*)" |
97 | | - Priority: 2 |
98 | | -IncludeIsMainRegex: "(Test)?$" |
99 | | -IncludeIsMainSourceRegex: "" |
100 | | -IndentAccessModifiers: false |
101 | 42 | IndentCaseLabels: true |
102 | | -IndentCaseBlocks: false |
103 | | -IndentGotoLabels: true |
104 | 43 | IndentPPDirectives: None |
105 | | -IndentExternBlock: AfterExternBlock |
106 | | -IndentRequires: true |
107 | 44 | IndentWidth: 4 |
108 | 45 | IndentWrappedFunctionNames: false |
109 | | -InsertTrailingCommas: None |
110 | | -JavaScriptQuotes: Leave |
111 | | -JavaScriptWrapImports: true |
112 | 46 | KeepEmptyLinesAtTheStartOfBlocks: true |
113 | | -LambdaBodyIndentation: Signature |
114 | 47 | MacroBlockBegin: "" |
115 | 48 | MacroBlockEnd: "" |
116 | 49 | MaxEmptyLinesToKeep: 1 |
117 | 50 | NamespaceIndentation: None |
118 | | -ObjCBinPackProtocolList: Auto |
119 | | -ObjCBlockIndentWidth: 2 |
120 | | -ObjCBreakBeforeNestedBlockParam: true |
121 | | -ObjCSpaceAfterProperty: false |
122 | | -ObjCSpaceBeforeProtocolList: true |
123 | 51 | PenaltyBreakAssignment: 2 |
124 | 52 | PenaltyBreakBeforeFirstCallParameter: 19 |
125 | 53 | PenaltyBreakComment: 300 |
126 | 54 | PenaltyBreakFirstLessLess: 120 |
127 | | -PenaltyBreakOpenParenthesis: 0 |
128 | 55 | PenaltyBreakString: 1000 |
129 | | -PenaltyBreakTemplateDeclaration: 10 |
130 | 56 | PenaltyExcessCharacter: 1000000 |
131 | 57 | PenaltyReturnTypeOnItsOwnLine: 60 |
132 | | -PenaltyIndentedWhitespace: 0 |
133 | 58 | PointerAlignment: Left |
134 | | -PPIndentWidth: -1 |
135 | | -ReferenceAlignment: Pointer |
136 | 59 | ReflowComments: false |
137 | | -RemoveBracesLLVM: false |
138 | | -SeparateDefinitionBlocks: Always |
139 | | -ShortNamespaceLines: 1 |
140 | | -SortJavaStaticImport: Before |
141 | 60 | SortUsingDeclarations: true |
142 | 61 | SpaceAfterCStyleCast: false |
143 | | -SpaceAfterLogicalNot: false |
144 | 62 | SpaceAfterTemplateKeyword: true |
145 | 63 | SpaceBeforeAssignmentOperators: true |
146 | | -SpaceBeforeCaseColon: false |
147 | 64 | SpaceBeforeParens: ControlStatements |
148 | | -SpaceBeforeParensOptions: |
149 | | - AfterControlStatements: true |
150 | | - AfterForeachMacros: true |
151 | | - AfterFunctionDefinitionName: false |
152 | | - AfterFunctionDeclarationName: false |
153 | | - AfterIfMacros: true |
154 | | - AfterOverloadedOperator: false |
155 | | - BeforeNonEmptyParentheses: false |
156 | | -SpaceAroundPointerQualifiers: Default |
157 | | -SpaceBeforeRangeBasedForLoopColon: true |
158 | | -SpaceInEmptyBlock: false |
159 | 65 | SpaceInEmptyParentheses: false |
160 | 66 | SpacesBeforeTrailingComments: 1 |
161 | | -SpacesInAngles: Never |
162 | | -SpacesInConditionalStatement: false |
| 67 | +SpacesInAngles: false |
163 | 68 | SpacesInContainerLiterals: true |
164 | 69 | SpacesInCStyleCastParentheses: false |
165 | | -SpacesInLineCommentPrefix: |
166 | | - Minimum: 1 |
167 | | - Maximum: -1 |
168 | 70 | SpacesInParentheses: false |
169 | 71 | SpacesInSquareBrackets: false |
170 | | -SpaceBeforeSquareBrackets: false |
171 | | -BitFieldColonSpacing: Both |
172 | | -Standard: Latest |
173 | | -StatementAttributeLikeMacros: |
174 | | - - Q_EMIT |
175 | | -StatementMacros: |
176 | | - - Q_UNUSED |
177 | | - - QT_REQUIRE_VERSION |
178 | 72 | TabWidth: 8 |
179 | | -UseCRLF: false |
180 | 73 | UseTab: Never |
181 | | -WhitespaceSensitiveMacros: |
182 | | - - STRINGIZE |
183 | | - - PP_STRINGIZE |
184 | | - - BOOST_PP_STRINGIZE |
185 | | - - NS_SWIFT_NAME |
186 | | - - CF_SWIFT_NAME |
187 | | -SpaceBeforeCpp11BracedList: false |
188 | | -SpaceBeforeCtorInitializerColon: true |
189 | | -SpaceBeforeInheritanceColon: true |
190 | 74 | --- |
191 | 75 |
|
0 commit comments