Ben Clayton | d4e6447 | 2019-02-01 08:18:19 +0000 | [diff] [blame] | 1 | --- |
| 2 | Language: Cpp |
| 3 | # BasedOnStyle: Google |
| 4 | AccessModifierOffset: -4 |
| 5 | AlignAfterOpenBracket: Align |
| 6 | AlignConsecutiveAssignments: false |
| 7 | AlignConsecutiveDeclarations: false |
| 8 | AlignEscapedNewlines: Left |
| 9 | AlignOperands: true |
| 10 | AlignTrailingComments: true |
| 11 | AllowAllParametersOfDeclarationOnNextLine: true |
| 12 | AllowShortBlocksOnASingleLine: true |
| 13 | AllowShortCaseLabelsOnASingleLine: true |
| 14 | AllowShortFunctionsOnASingleLine: Inline |
| 15 | AllowShortIfStatementsOnASingleLine: true |
| 16 | AllowShortLoopsOnASingleLine: true |
| 17 | AlwaysBreakAfterDefinitionReturnType: None |
| 18 | AlwaysBreakAfterReturnType: None |
| 19 | AlwaysBreakBeforeMultilineStrings: true |
| 20 | AlwaysBreakTemplateDeclarations: true |
| 21 | BinPackArguments: true |
| 22 | BinPackParameters: true |
| 23 | BraceWrapping: |
Nicolas Capens | db74776 | 2020-03-31 12:00:46 -0400 | [diff] [blame] | 24 | AfterCaseLabel: true |
Ben Clayton | d4e6447 | 2019-02-01 08:18:19 +0000 | [diff] [blame] | 25 | AfterClass: true |
| 26 | AfterControlStatement: true |
| 27 | AfterEnum: true |
| 28 | AfterExternBlock: false |
| 29 | AfterFunction: true |
| 30 | AfterNamespace: false |
| 31 | AfterStruct: true |
| 32 | AfterUnion: true |
| 33 | BeforeCatch: true |
| 34 | BeforeElse: true |
| 35 | IndentBraces: false |
| 36 | SplitEmptyFunction: false |
| 37 | SplitEmptyNamespace: false |
| 38 | SplitEmptyRecord: false |
| 39 | BreakBeforeBinaryOperators: None |
| 40 | BreakBeforeBraces: Custom |
| 41 | BreakBeforeInheritanceComma: false |
| 42 | BreakBeforeTernaryOperators: true |
| 43 | BreakConstructorInitializersBeforeComma: false |
| 44 | BreakConstructorInitializers: BeforeComma |
| 45 | BreakAfterJavaFieldAnnotations: false |
| 46 | BreakStringLiterals: true |
| 47 | ColumnLimit: 0 |
| 48 | CommentPragmas: '^ IWYU pragma:' |
| 49 | CompactNamespaces: false |
| 50 | ConstructorInitializerAllOnOneLineOrOnePerLine: false |
| 51 | ConstructorInitializerIndentWidth: 4 |
| 52 | ContinuationIndentWidth: 4 |
| 53 | Cpp11BracedListStyle: false |
| 54 | DerivePointerAlignment: false |
| 55 | DisableFormat: false |
| 56 | ExperimentalAutoDetectBinPacking: false |
| 57 | FixNamespaceComments: true |
| 58 | ForEachMacros: |
| 59 | - Q_FOREACH |
| 60 | - BOOST_FOREACH |
| 61 | IncludeBlocks: Preserve |
| 62 | IncludeCategories: |
| 63 | - Regex: '^"[^/]*"' |
| 64 | Priority: 1 |
| 65 | - Regex: '^".*/.*"' |
| 66 | Priority: 2 |
| 67 | - Regex: '^<.*\..*>' |
| 68 | Priority: 3 |
| 69 | - Regex: '^<[^.]*>' |
| 70 | Priority: 4 |
| 71 | - Regex: '.*' |
| 72 | Priority: 5 |
| 73 | IncludeIsMainRegex: '([-_](test|unittest))?$' |
Nicolas Capens | 112faf4 | 2019-12-13 17:32:26 -0500 | [diff] [blame] | 74 | IndentCaseBlocks: true |
| 75 | IndentCaseLabels: false |
Ben Clayton | d4e6447 | 2019-02-01 08:18:19 +0000 | [diff] [blame] | 76 | IndentPPDirectives: AfterHash |
| 77 | IndentWidth: 4 |
| 78 | IndentWrappedFunctionNames: false |
| 79 | JavaScriptQuotes: Leave |
| 80 | JavaScriptWrapImports: true |
| 81 | KeepEmptyLinesAtTheStartOfBlocks: true |
| 82 | MacroBlockBegin: '' |
| 83 | MacroBlockEnd: '' |
| 84 | MaxEmptyLinesToKeep: 1 |
| 85 | NamespaceIndentation: None |
| 86 | ObjCBlockIndentWidth: 2 |
| 87 | ObjCSpaceAfterProperty: false |
| 88 | ObjCSpaceBeforeProtocolList: false |
| 89 | PenaltyBreakAssignment: 2 |
| 90 | PenaltyBreakBeforeFirstCallParameter: 1 |
| 91 | PenaltyBreakComment: 300 |
| 92 | PenaltyBreakFirstLessLess: 120 |
| 93 | PenaltyBreakString: 1000 |
| 94 | PenaltyExcessCharacter: 1000000 |
| 95 | PenaltyReturnTypeOnItsOwnLine: 200 |
| 96 | PointerAlignment: Right |
| 97 | RawStringFormats: |
| 98 | - Language: TextProto |
| 99 | BasedOnStyle: google |
| 100 | ReflowComments: true |
| 101 | SortIncludes: true |
| 102 | SortUsingDeclarations: true |
| 103 | SpaceAfterCStyleCast: false |
| 104 | SpaceAfterTemplateKeyword: false |
| 105 | SpaceBeforeAssignmentOperators: true |
| 106 | SpaceBeforeParens: Never |
| 107 | SpaceInEmptyParentheses: false |
| 108 | SpacesBeforeTrailingComments: 2 |
| 109 | SpacesInAngles: false |
| 110 | SpacesInContainerLiterals: true |
| 111 | SpacesInCStyleCastParentheses: false |
| 112 | SpacesInParentheses: false |
| 113 | SpacesInSquareBrackets: false |
| 114 | Standard: Auto |
| 115 | TabWidth: 4 |
| 116 | UseTab: ForIndentation |
| 117 | ... |
| 118 | |