Austin Schuh | 8aacbf7 | 2018-01-28 19:54:58 -0800 | [diff] [blame] | 1 | --- |
| 2 | Language: Cpp |
| 3 | BasedOnStyle: Google |
| 4 | AccessModifierOffset: -4 |
| 5 | AlignAfterOpenBracket: DontAlign |
| 6 | AlignConsecutiveAssignments: false |
| 7 | AlignConsecutiveDeclarations: false |
| 8 | AlignOperands: true |
| 9 | AlignTrailingComments: true |
| 10 | AllowAllParametersOfDeclarationOnNextLine: false |
| 11 | AllowShortBlocksOnASingleLine: true |
| 12 | AllowShortCaseLabelsOnASingleLine: false |
| 13 | AllowShortFunctionsOnASingleLine: Inline |
| 14 | AllowShortIfStatementsOnASingleLine: false |
| 15 | AllowShortLoopsOnASingleLine: false |
| 16 | AlwaysBreakAfterDefinitionReturnType: None |
| 17 | AlwaysBreakAfterReturnType: None |
| 18 | AlwaysBreakBeforeMultilineStrings: true |
| 19 | AlwaysBreakTemplateDeclarations: true |
| 20 | BinPackArguments: true |
| 21 | BinPackParameters: false |
| 22 | BraceWrapping: |
| 23 | AfterClass: true |
| 24 | AfterControlStatement: true |
| 25 | AfterEnum: true |
| 26 | AfterFunction: true |
| 27 | AfterNamespace: false |
| 28 | AfterObjCDeclaration: false |
| 29 | AfterStruct: true |
| 30 | AfterUnion: true |
| 31 | BeforeCatch: false |
| 32 | BeforeElse: true |
| 33 | IndentBraces: false |
| 34 | BreakBeforeBinaryOperators: None |
| 35 | BreakBeforeBraces: Custom |
| 36 | BreakBeforeTernaryOperators: false |
| 37 | BreakConstructorInitializersBeforeComma: false |
| 38 | BreakAfterJavaFieldAnnotations: false |
| 39 | BreakStringLiterals: true |
| 40 | ColumnLimit: 120 |
| 41 | CommentPragmas: '^ IWYU pragma:' |
| 42 | ConstructorInitializerAllOnOneLineOrOnePerLine: true |
| 43 | ConstructorInitializerIndentWidth: 4 |
| 44 | ContinuationIndentWidth: 4 |
| 45 | Cpp11BracedListStyle: true |
| 46 | DerivePointerAlignment: true |
| 47 | DisableFormat: false |
| 48 | ExperimentalAutoDetectBinPacking: false |
| 49 | ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] |
| 50 | IncludeCategories: |
| 51 | - Regex: '^<.*\.h>' |
| 52 | Priority: 1 |
| 53 | - Regex: '^<.*' |
| 54 | Priority: 2 |
| 55 | - Regex: '.*' |
| 56 | Priority: 3 |
| 57 | IncludeIsMainRegex: '([-_](test|unittest))?$' |
| 58 | IndentCaseLabels: true |
| 59 | IndentWidth: 4 |
| 60 | IndentWrappedFunctionNames: false |
| 61 | JavaScriptQuotes: Leave |
| 62 | JavaScriptWrapImports: true |
| 63 | KeepEmptyLinesAtTheStartOfBlocks: false |
| 64 | MacroBlockBegin: '' |
| 65 | MacroBlockEnd: '' |
| 66 | MaxEmptyLinesToKeep: 2 |
| 67 | NamespaceIndentation: None |
| 68 | ObjCBlockIndentWidth: 2 |
| 69 | ObjCSpaceAfterProperty: false |
| 70 | ObjCSpaceBeforeProtocolList: false |
| 71 | PenaltyBreakBeforeFirstCallParameter: 1 |
| 72 | PenaltyBreakComment: 300 |
| 73 | PenaltyBreakFirstLessLess: 120 |
| 74 | PenaltyBreakString: 1000 |
| 75 | PenaltyExcessCharacter: 1000000 |
| 76 | PenaltyReturnTypeOnItsOwnLine: 200 |
| 77 | PointerAlignment: Left |
| 78 | ReflowComments: false |
| 79 | SortIncludes: false |
| 80 | SpaceAfterCStyleCast: false |
| 81 | SpaceBeforeAssignmentOperators: true |
| 82 | SpaceBeforeParens: ControlStatements |
| 83 | SpaceInEmptyParentheses: false |
| 84 | SpacesBeforeTrailingComments: 2 |
| 85 | SpacesInAngles: false |
| 86 | SpacesInContainerLiterals: false |
| 87 | SpacesInCStyleCastParentheses: false |
| 88 | SpacesInParentheses: false |
| 89 | SpacesInSquareBrackets: false |
| 90 | Standard: Cpp11 |
| 91 | TabWidth: 4 |
| 92 | UseTab: Never |
| 93 | ... |
| 94 | |