blob: 625a0a05a2b3adc6d183cca7c18135512d25fe0a [file] [log] [blame]
James Feist03a02ad2019-02-06 12:38:50 -08001---
2Language: Cpp
3# BasedOnStyle: LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: Align
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
Jason M. Bills0d5c0712020-12-08 10:10:47 -08008AlignEscapedNewlines: Right
James Feist03a02ad2019-02-06 12:38:50 -08009AlignOperands: true
10AlignTrailingComments: true
11AllowAllParametersOfDeclarationOnNextLine: true
12AllowShortBlocksOnASingleLine: false
13AllowShortCaseLabelsOnASingleLine: false
14AllowShortFunctionsOnASingleLine: None
15AllowShortIfStatementsOnASingleLine: false
16AllowShortLoopsOnASingleLine: false
James Feist03a02ad2019-02-06 12:38:50 -080017AlwaysBreakAfterReturnType: None
18AlwaysBreakBeforeMultilineStrings: false
Jason M. Bills0d5c0712020-12-08 10:10:47 -080019AlwaysBreakTemplateDeclarations: Yes
James Feist03a02ad2019-02-06 12:38:50 -080020BinPackArguments: true
21BinPackParameters: true
22BraceWrapping:
Jason M. Bills0d5c0712020-12-08 10:10:47 -080023 AfterCaseLabel: true
James Feist03a02ad2019-02-06 12:38:50 -080024 AfterClass: true
25 AfterControlStatement: true
26 AfterEnum: true
27 AfterFunction: true
28 AfterNamespace: true
29 AfterObjCDeclaration: true
30 AfterStruct: true
31 AfterUnion: true
Jason M. Bills0d5c0712020-12-08 10:10:47 -080032 AfterExternBlock: true
James Feist03a02ad2019-02-06 12:38:50 -080033 BeforeCatch: true
34 BeforeElse: true
35 IndentBraces: false
Jason M. Bills0d5c0712020-12-08 10:10:47 -080036 SplitEmptyFunction: false
37 SplitEmptyRecord: false
38 SplitEmptyNamespace: false
James Feist03a02ad2019-02-06 12:38:50 -080039BreakBeforeBinaryOperators: None
40BreakBeforeBraces: Custom
41BreakBeforeTernaryOperators: true
42BreakConstructorInitializers: AfterColon
Jason M. Bills0d5c0712020-12-08 10:10:47 -080043BreakInheritanceList: AfterColon
44BreakStringLiterals: true
James Feist03a02ad2019-02-06 12:38:50 -080045ColumnLimit: 80
46CommentPragmas: '^ IWYU pragma:'
Jason M. Bills0d5c0712020-12-08 10:10:47 -080047CompactNamespaces: false
James Feist03a02ad2019-02-06 12:38:50 -080048ConstructorInitializerAllOnOneLineOrOnePerLine: false
49ConstructorInitializerIndentWidth: 4
50ContinuationIndentWidth: 4
51Cpp11BracedListStyle: true
52DerivePointerAlignment: false
53PointerAlignment: Left
54DisableFormat: false
55ExperimentalAutoDetectBinPacking: false
56FixNamespaceComments: true
57ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
58IncludeBlocks: Regroup
59IncludeCategories:
60 - Regex: '^[<"](gtest|gmock)'
Jason M. Bills0d5c0712020-12-08 10:10:47 -080061 Priority: 7
James Feist03a02ad2019-02-06 12:38:50 -080062 - Regex: '^"config.h"'
63 Priority: -1
Jason M. Bills0d5c0712020-12-08 10:10:47 -080064 - Regex: '^".*\.h"'
James Feist03a02ad2019-02-06 12:38:50 -080065 Priority: 1
Jason M. Bills0d5c0712020-12-08 10:10:47 -080066 - Regex: '^".*\.hpp"'
James Feist03a02ad2019-02-06 12:38:50 -080067 Priority: 2
Jason M. Bills0d5c0712020-12-08 10:10:47 -080068 - Regex: '^<.*\.h>'
James Feist03a02ad2019-02-06 12:38:50 -080069 Priority: 3
Jason M. Bills0d5c0712020-12-08 10:10:47 -080070 - Regex: '^<.*\.hpp>'
James Feist03a02ad2019-02-06 12:38:50 -080071 Priority: 4
Jason M. Bills0d5c0712020-12-08 10:10:47 -080072 - Regex: '^<.*'
73 Priority: 5
74 - Regex: '.*'
75 Priority: 6
James Feist03a02ad2019-02-06 12:38:50 -080076IndentCaseLabels: true
77IndentWidth: 4
78IndentWrappedFunctionNames: true
79KeepEmptyLinesAtTheStartOfBlocks: true
80MacroBlockBegin: ''
81MacroBlockEnd: ''
82MaxEmptyLinesToKeep: 1
83NamespaceIndentation: None
84ObjCBlockIndentWidth: 2
85ObjCSpaceAfterProperty: false
86ObjCSpaceBeforeProtocolList: true
87PenaltyBreakBeforeFirstCallParameter: 19
88PenaltyBreakComment: 300
89PenaltyBreakFirstLessLess: 120
90PenaltyBreakString: 1000
91PenaltyExcessCharacter: 1000000
92PenaltyReturnTypeOnItsOwnLine: 60
93ReflowComments: true
94SortIncludes: true
95SortUsingDeclarations: true
96SpaceAfterCStyleCast: false
Jason M. Bills0d5c0712020-12-08 10:10:47 -080097SpaceAfterTemplateKeyword: true
James Feist03a02ad2019-02-06 12:38:50 -080098SpaceBeforeAssignmentOperators: true
Jason M. Bills0d5c0712020-12-08 10:10:47 -080099SpaceBeforeCpp11BracedList: false
100SpaceBeforeCtorInitializerColon: true
101SpaceBeforeInheritanceColon: true
James Feist03a02ad2019-02-06 12:38:50 -0800102SpaceBeforeParens: ControlStatements
Jason M. Bills0d5c0712020-12-08 10:10:47 -0800103SpaceBeforeRangeBasedForLoopColon: true
James Feist03a02ad2019-02-06 12:38:50 -0800104SpaceInEmptyParentheses: false
105SpacesBeforeTrailingComments: 1
106SpacesInAngles: false
107SpacesInContainerLiterals: true
108SpacesInCStyleCastParentheses: false
109SpacesInParentheses: false
110SpacesInSquareBrackets: false
Jason M. Bills0d5c0712020-12-08 10:10:47 -0800111Standard: Latest
James Feist03a02ad2019-02-06 12:38:50 -0800112TabWidth: 4
113UseTab: Never
114...