blob: 692faa26ba3e14349ff0f8b541ba72cce0f241d1 [file] [log] [blame]
Andrew Geissler072da3e2018-01-18 07:21:42 -08001---
2Language: Cpp
3# BasedOnStyle: LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: Align
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
8AlignEscapedNewlinesLeft: false
9AlignOperands: true
10AlignTrailingComments: true
11AllowAllParametersOfDeclarationOnNextLine: true
12AllowShortBlocksOnASingleLine: false
13AllowShortCaseLabelsOnASingleLine: false
14AllowShortFunctionsOnASingleLine: None
15AllowShortIfStatementsOnASingleLine: false
16AllowShortLoopsOnASingleLine: false
17AlwaysBreakAfterDefinitionReturnType: None
18AlwaysBreakAfterReturnType: None
19AlwaysBreakBeforeMultilineStrings: false
Patrick Venture2b238af2018-08-31 12:45:01 -070020AlwaysBreakTemplateDeclarations: true
Andrew Geissler072da3e2018-01-18 07:21:42 -080021BinPackArguments: true
22BinPackParameters: true
23BraceWrapping:
Patrick Williams01ac5ca2020-05-21 15:06:30 -050024 AfterCaseLabel: true
Andrew Geissler072da3e2018-01-18 07:21:42 -080025 AfterClass: true
26 AfterControlStatement: true
27 AfterEnum: true
28 AfterFunction: true
29 AfterNamespace: true
30 AfterObjCDeclaration: true
31 AfterStruct: true
32 AfterUnion: true
33 BeforeCatch: true
34 BeforeElse: true
35 IndentBraces: false
36BreakBeforeBinaryOperators: None
37BreakBeforeBraces: Custom
38BreakBeforeTernaryOperators: true
39BreakConstructorInitializers: AfterColon
40ColumnLimit: 80
41CommentPragmas: '^ IWYU pragma:'
42ConstructorInitializerAllOnOneLineOrOnePerLine: false
43ConstructorInitializerIndentWidth: 4
44ContinuationIndentWidth: 4
45Cpp11BracedListStyle: true
William A. Kennington IIIe0d69652018-08-31 13:09:47 -070046DerivePointerAlignment: false
Andrew Geissler072da3e2018-01-18 07:21:42 -080047PointerAlignment: Left
48DisableFormat: false
49ExperimentalAutoDetectBinPacking: false
50FixNamespaceComments: true
51ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
Patrick Venture95269db2018-08-31 09:19:17 -070052IncludeBlocks: Regroup
53IncludeCategories:
54 - Regex: '^[<"](gtest|gmock)'
55 Priority: 5
56 - Regex: '^"config.h"'
57 Priority: -1
58 - Regex: '^".*\.hpp"'
59 Priority: 1
60 - Regex: '^<.*\.h>'
61 Priority: 2
62 - Regex: '^<.*'
63 Priority: 3
64 - Regex: '.*'
65 Priority: 4
Andrew Geissler072da3e2018-01-18 07:21:42 -080066IndentCaseLabels: true
67IndentWidth: 4
Adriana Kobylakf9c02db2018-02-28 13:28:54 -060068IndentWrappedFunctionNames: true
Andrew Geissler072da3e2018-01-18 07:21:42 -080069KeepEmptyLinesAtTheStartOfBlocks: true
70MacroBlockBegin: ''
71MacroBlockEnd: ''
72MaxEmptyLinesToKeep: 1
73NamespaceIndentation: None
74ObjCBlockIndentWidth: 2
75ObjCSpaceAfterProperty: false
76ObjCSpaceBeforeProtocolList: true
77PenaltyBreakBeforeFirstCallParameter: 19
78PenaltyBreakComment: 300
79PenaltyBreakFirstLessLess: 120
80PenaltyBreakString: 1000
81PenaltyExcessCharacter: 1000000
82PenaltyReturnTypeOnItsOwnLine: 60
Andrew Geissler072da3e2018-01-18 07:21:42 -080083ReflowComments: true
Patrick Venture95269db2018-08-31 09:19:17 -070084SortIncludes: true
William A. Kennington III06da5622018-08-31 13:00:29 -070085SortUsingDeclarations: true
Andrew Geissler072da3e2018-01-18 07:21:42 -080086SpaceAfterCStyleCast: false
87SpaceBeforeAssignmentOperators: true
88SpaceBeforeParens: ControlStatements
89SpaceInEmptyParentheses: false
90SpacesBeforeTrailingComments: 1
91SpacesInAngles: false
92SpacesInContainerLiterals: true
93SpacesInCStyleCastParentheses: false
94SpacesInParentheses: false
95SpacesInSquareBrackets: false
96Standard: Cpp11
97TabWidth: 4
98UseTab: Never
99...
100