blob: 66b0148d26f6883a2d0a217581692e955554f69b [file] [log] [blame]
Eric Kunze2364dcd2021-04-26 11:06:57 -07001BasedOnStyle: LLVM
2AccessModifierOffset: -4
3AllowShortFunctionsOnASingleLine: None
4AlwaysBreakTemplateDeclarations: true
5BinPackParameters: false
6BraceWrapping:
7 AfterClass: true
8 AfterControlStatement: true
9 AfterEnum: true
10 AfterFunction: true
11 AfterNamespace: true
12 AfterObjCDeclaration: true
13 AfterStruct: true
14 AfterUnion: true
15 AfterExternBlock: true
16 BeforeCatch: true
17 BeforeElse: true
18 IndentBraces: false
19 SplitEmptyFunction: false
20 SplitEmptyRecord: false
21 SplitEmptyNamespace: true
22BreakBeforeBraces: Custom
23BreakConstructorInitializersBeforeComma: true
24BreakConstructorInitializers: BeforeColon
25Cpp11BracedListStyle: false
26IndentCaseLabels: true
27IndentWidth: 4
28IndentWrappedFunctionNames: true
29PointerAlignment: Left
30SpacesInContainerLiterals: false
31AlignConsecutiveAssignments: true
32ColumnLimit: 120
33ReflowComments: false
34SpacesBeforeTrailingComments: 4