blob: 06e49855afb023cd1edcb950de6d4665127b6988 [file] [log] [blame]
Harrison Mutai762d4942025-05-06 13:06:41 +00001---
2AccessModifierOffset: -4
3AlignAfterOpenBracket: Align
4AlignConsecutiveAssignments: false
5AlignConsecutiveDeclarations: false
6AlignEscapedNewlines: Left
7AlignOperands: true
8AlignTrailingComments: false
9AllowAllParametersOfDeclarationOnNextLine: false
10AllowShortBlocksOnASingleLine: false
11AllowShortCaseLabelsOnASingleLine: false
12AllowShortFunctionsOnASingleLine: None
13AllowShortIfStatementsOnASingleLine: false
14AllowShortLoopsOnASingleLine: false
15AlwaysBreakAfterDefinitionReturnType: None
16AlwaysBreakAfterReturnType: None
17AlwaysBreakBeforeMultilineStrings: false
18AlwaysBreakTemplateDeclarations: false
19BinPackArguments: true
20BinPackParameters: true
21BraceWrapping:
22 AfterClass: false
23 AfterControlStatement: false
24 AfterEnum: false
25 AfterFunction: true
26 AfterNamespace: true
27 AfterObjCDeclaration: false
28 AfterStruct: false
29 AfterUnion: false
30 AfterExternBlock: false
31 BeforeCatch: false
32 BeforeElse: false
33 IndentBraces: false
34 SplitEmptyFunction: true
35 SplitEmptyRecord: true
36 SplitEmptyNamespace: true
37BreakBeforeBinaryOperators: None
38BreakBeforeBraces: Custom
39BreakBeforeInheritanceComma: false
40BreakBeforeTernaryOperators: false
41BreakConstructorInitializersBeforeComma: false
42BreakConstructorInitializers: BeforeComma
43BreakAfterJavaFieldAnnotations: false
44BreakStringLiterals: false
45ColumnLimit: 80
46CommentPragmas: '^ IWYU pragma:'
47CompactNamespaces: false
48ConstructorInitializerAllOnOneLineOrOnePerLine: false
49ConstructorInitializerIndentWidth: 8
50ContinuationIndentWidth: 8
51Cpp11BracedListStyle: false
52DerivePointerAlignment: false
53DisableFormat: false
54ExperimentalAutoDetectBinPacking: false
55FixNamespaceComments: false
56
57IncludeIsMainRegex: '(Test)?$'
58IndentCaseLabels: false
59IndentGotoLabels: false
60IndentPPDirectives: None
61IndentWidth: 8
62IndentWrappedFunctionNames: false
63JavaScriptQuotes: Leave
64JavaScriptWrapImports: true
65KeepEmptyLinesAtTheStartOfBlocks: false
66MacroBlockBegin: ''
67MacroBlockEnd: ''
68MaxEmptyLinesToKeep: 1
69NamespaceIndentation: None
70ObjCBinPackProtocolList: Auto
71ObjCBlockIndentWidth: 8
72ObjCSpaceAfterProperty: true
73ObjCSpaceBeforeProtocolList: true
74
75PointerAlignment: Right
76ReflowComments: false
77SortIncludes: true
78SortUsingDeclarations: false
79SpaceAfterCStyleCast: false
80SpaceAfterTemplateKeyword: true
81SpaceBeforeAssignmentOperators: true
82SpaceBeforeCtorInitializerColon: true
83SpaceBeforeInheritanceColon: true
84SpaceBeforeParens: ControlStatementsExceptForEachMacros
85SpaceBeforeRangeBasedForLoopColon: true
86SpaceInEmptyParentheses: false
87SpacesBeforeTrailingComments: 1
88SpacesInAngles: false
89SpacesInContainerLiterals: false
90SpacesInCStyleCastParentheses: false
91SpacesInParentheses: false
92SpacesInSquareBrackets: false
93Standard: Cpp03
94TabWidth: 8
95UseTab: Always
96...