blob: 97ce43fddf78e2bd0cf96faf920f85d1ade82447 [file] [log] [blame]
James Kuszmaula4a32b92021-01-17 11:32:21 -08001---
2BasedOnStyle: LLVM
3Language: Cpp
4AlignAfterOpenBracket: AlwaysBreak
5AlignConsecutiveAssignments: false
6AlignConsecutiveDeclarations: false
7AlignEscapedNewlines: DontAlign
8AlignOperands: true
9AlignTrailingComments: false
10AllowAllParametersOfDeclarationOnNextLine: true
11AllowShortBlocksOnASingleLine: false
12AllowShortCaseLabelsOnASingleLine: false
13AllowShortFunctionsOnASingleLine: Empty
14AllowShortIfStatementsOnASingleLine: false
15AllowShortLoopsOnASingleLine: false
16AlwaysBreakAfterReturnType: None
17AlwaysBreakBeforeMultilineStrings: false
18BinPackArguments: true
19BinPackParameters: false
20BreakBeforeBinaryOperators: None
21BreakBeforeBraces: Attach
22BreakBeforeTernaryOperators: true
23BreakInheritanceList: BeforeColon
24BreakStringLiterals: true
25ColumnLimit: 100
26CommentPragmas: '^ IWYU pragma:'
27ContinuationIndentWidth: 4
28DerivePointerAlignment: false
29DisableFormat: false
30ForEachMacros:
31 - LIST_FOREACH
32IncludeBlocks: Preserve
33IncludeCategories:
34 - Regex: '^"[^\.]+'
35 Priority: 1
36 - Regex: '^"\.\./'
37 Priority: 2
38 - Regex: '^<rawrtcc'
39 Priority: 3
40 - Regex: '^<re\.h'
41 Priority: 4
42 - Regex: '.*'
43 Priority: 5
44IncludeIsMainRegex: '(Test)?$'
45IndentCaseLabels: true
46IndentPPDirectives: AfterHash
47IndentWidth: 4
48IndentWrappedFunctionNames: false
49KeepEmptyLinesAtTheStartOfBlocks: false
50MacroBlockBegin: ''
51MacroBlockEnd: ''
52MaxEmptyLinesToKeep: 1
53PenaltyBreakAssignment: 2
54PenaltyBreakBeforeFirstCallParameter: 19
55PenaltyBreakComment: 300
56PenaltyBreakFirstLessLess: 120
57PenaltyBreakString: 1000
58PenaltyBreakTemplateDeclaration: 10
59PenaltyExcessCharacter: 1000000
60PenaltyReturnTypeOnItsOwnLine: 6000
61PointerAlignment: Left
62ReflowComments: true
63SortIncludes: true
64SpaceAfterCStyleCast: true
65SpaceBeforeAssignmentOperators: true
66SpaceBeforeParens: ControlStatements
67SpaceInEmptyParentheses: false
68SpacesBeforeTrailingComments: 2
69SpacesInCStyleCastParentheses: false
70SpacesInParentheses: false
71SpacesInSquareBrackets: false
72TabWidth: 4
73UseTab: Never
74...