|
1 | | -Language: C |
2 | 1 | BasedOnStyle: Google |
3 | 2 | AccessModifierOffset: -4 |
4 | 3 | AlignAfterOpenBracket: Align |
@@ -163,172 +162,3 @@ StatementMacros: |
163 | 162 | TabWidth: 4 |
164 | 163 | UseCRLF: false |
165 | 164 | UseTab: Never |
166 | | -... |
167 | | - |
168 | | ---- |
169 | | -Language: Cpp |
170 | | -BasedOnStyle: Google |
171 | | -AccessModifierOffset: -4 |
172 | | -AlignAfterOpenBracket: Align |
173 | | -AlignConsecutiveMacros: true |
174 | | -AlignConsecutiveAssignments: true |
175 | | -AlignConsecutiveDeclarations: false |
176 | | -AlignEscapedNewlines: Left |
177 | | -AlignOperands: true |
178 | | -AlignTrailingComments: true |
179 | | -AllowAllArgumentsOnNextLine: true |
180 | | -AllowAllConstructorInitializersOnNextLine: true |
181 | | -AllowAllParametersOfDeclarationOnNextLine: true |
182 | | -AllowShortBlocksOnASingleLine: Never |
183 | | -AllowShortCaseLabelsOnASingleLine: false |
184 | | -AllowShortFunctionsOnASingleLine: false |
185 | | -AllowShortLambdasOnASingleLine: All |
186 | | -AllowShortIfStatementsOnASingleLine: WithoutElse |
187 | | -AllowShortLoopsOnASingleLine: true |
188 | | -AlwaysBreakAfterDefinitionReturnType: None |
189 | | -AlwaysBreakAfterReturnType: None |
190 | | -AlwaysBreakBeforeMultilineStrings: true |
191 | | -AlwaysBreakTemplateDeclarations: Yes |
192 | | -BinPackArguments: true |
193 | | -BinPackParameters: true |
194 | | -BraceWrapping: |
195 | | - AfterCaseLabel: false |
196 | | - AfterClass: false |
197 | | - AfterControlStatement: false |
198 | | - AfterEnum: false |
199 | | - AfterFunction: true |
200 | | - AfterNamespace: false |
201 | | - AfterObjCDeclaration: false |
202 | | - AfterStruct: false |
203 | | - AfterUnion: false |
204 | | - AfterExternBlock: false |
205 | | - BeforeCatch: false |
206 | | - BeforeElse: false |
207 | | - IndentBraces: false |
208 | | - SplitEmptyFunction: true |
209 | | - SplitEmptyRecord: true |
210 | | - SplitEmptyNamespace: true |
211 | | -BreakBeforeBinaryOperators: None |
212 | | -BreakBeforeBraces: Custom |
213 | | -BreakBeforeInheritanceComma: false |
214 | | -BreakInheritanceList: BeforeColon |
215 | | -BreakBeforeTernaryOperators: true |
216 | | -BreakConstructorInitializersBeforeComma: false |
217 | | -BreakConstructorInitializers: BeforeColon |
218 | | -BreakAfterJavaFieldAnnotations: false |
219 | | -BreakStringLiterals: true |
220 | | -ColumnLimit: 120 |
221 | | -CommentPragmas: '^ IWYU pragma:' |
222 | | -CompactNamespaces: false |
223 | | -ConstructorInitializerAllOnOneLineOrOnePerLine: true |
224 | | -ConstructorInitializerIndentWidth: 4 |
225 | | -ContinuationIndentWidth: 4 |
226 | | -Cpp11BracedListStyle: true |
227 | | -DeriveLineEnding: true |
228 | | -DerivePointerAlignment: true |
229 | | -DisableFormat: false |
230 | | -ExperimentalAutoDetectBinPacking: false |
231 | | -FixNamespaceComments: true |
232 | | -ForEachMacros: |
233 | | - - foreach |
234 | | - - Q_FOREACH |
235 | | - - BOOST_FOREACH |
236 | | -IncludeBlocks: Regroup |
237 | | -IncludeCategories: |
238 | | - - Regex: '^<ext/.*\.h>' |
239 | | - Priority: 2 |
240 | | - SortPriority: 0 |
241 | | - - Regex: '^<.*\.h>' |
242 | | - Priority: 1 |
243 | | - SortPriority: 0 |
244 | | - - Regex: '^<.*' |
245 | | - Priority: 2 |
246 | | - SortPriority: 0 |
247 | | - - Regex: '.*' |
248 | | - Priority: 3 |
249 | | - SortPriority: 0 |
250 | | -IncludeIsMainRegex: '([-_](test|unittest))?$' |
251 | | -IncludeIsMainSourceRegex: '' |
252 | | -IndentCaseLabels: true |
253 | | -IndentGotoLabels: true |
254 | | -IndentPPDirectives: None |
255 | | -IndentWidth: 4 |
256 | | -IndentWrappedFunctionNames: false |
257 | | -JavaScriptQuotes: Leave |
258 | | -JavaScriptWrapImports: true |
259 | | -KeepEmptyLinesAtTheStartOfBlocks: false |
260 | | -MacroBlockBegin: '' |
261 | | -MacroBlockEnd: '' |
262 | | -MaxEmptyLinesToKeep: 1 |
263 | | -NamespaceIndentation: None |
264 | | -ObjCBinPackProtocolList: Never |
265 | | -ObjCBlockIndentWidth: 2 |
266 | | -ObjCSpaceAfterProperty: false |
267 | | -ObjCSpaceBeforeProtocolList: true |
268 | | -PenaltyBreakAssignment: 2 |
269 | | -PenaltyBreakBeforeFirstCallParameter: 1 |
270 | | -PenaltyBreakComment: 300 |
271 | | -PenaltyBreakFirstLessLess: 120 |
272 | | -PenaltyBreakString: 1000 |
273 | | -PenaltyBreakTemplateDeclaration: 10 |
274 | | -PenaltyExcessCharacter: 1000000 |
275 | | -PenaltyReturnTypeOnItsOwnLine: 200 |
276 | | -PointerAlignment: Left |
277 | | -RawStringFormats: |
278 | | - - Language: Cpp |
279 | | - Delimiters: |
280 | | - - cc |
281 | | - - CC |
282 | | - - cpp |
283 | | - - Cpp |
284 | | - - CPP |
285 | | - - 'c++' |
286 | | - - 'C++' |
287 | | - CanonicalDelimiter: '' |
288 | | - BasedOnStyle: google |
289 | | - - Language: TextProto |
290 | | - Delimiters: |
291 | | - - pb |
292 | | - - PB |
293 | | - - proto |
294 | | - - PROTO |
295 | | - EnclosingFunctions: |
296 | | - - EqualsProto |
297 | | - - EquivToProto |
298 | | - - PARSE_PARTIAL_TEXT_PROTO |
299 | | - - PARSE_TEST_PROTO |
300 | | - - PARSE_TEXT_PROTO |
301 | | - - ParseTextOrDie |
302 | | - - ParseTextProtoOrDie |
303 | | - CanonicalDelimiter: '' |
304 | | - BasedOnStyle: google |
305 | | -ReflowComments: true |
306 | | -SortIncludes: false |
307 | | -SortUsingDeclarations: true |
308 | | -SpaceAfterCStyleCast: false |
309 | | -SpaceAfterLogicalNot: false |
310 | | -SpaceAfterTemplateKeyword: true |
311 | | -SpaceBeforeAssignmentOperators: true |
312 | | -SpaceBeforeCpp11BracedList: false |
313 | | -SpaceBeforeCtorInitializerColon: true |
314 | | -SpaceBeforeInheritanceColon: true |
315 | | -SpaceBeforeParens: ControlStatements |
316 | | -SpaceBeforeRangeBasedForLoopColon: true |
317 | | -SpaceInEmptyBlock: false |
318 | | -SpaceInEmptyParentheses: false |
319 | | -SpacesBeforeTrailingComments: 2 |
320 | | -SpacesInAngles: false |
321 | | -SpacesInConditionalStatement: false |
322 | | -SpacesInContainerLiterals: true |
323 | | -SpacesInCStyleCastParentheses: false |
324 | | -SpacesInParentheses: false |
325 | | -SpacesInSquareBrackets: false |
326 | | -SpaceBeforeSquareBrackets: false |
327 | | -Standard: Auto |
328 | | -StatementMacros: |
329 | | - - Q_UNUSED |
330 | | - - QT_REQUIRE_VERSION |
331 | | -TabWidth: 4 |
332 | | -UseCRLF: false |
333 | | -UseTab: Never |
334 | | -... |
0 commit comments