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