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