blob: d43e884dbbb3dae7d4099cba649bb733da65c09c [file] [log] [blame]
John Wedigbf8d6ac2021-11-01 16:56:19 -07001---
2Language: Cpp
3# BasedOnStyle: LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: Align
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
8AlignEscapedNewlines: Right
Patrick Williams04c28fa2023-05-10 07:51:24 -05009AlignOperands: Align
10AlignTrailingComments:
11 Kind: Always
12 OverEmptyLines: 1
John Wedigbf8d6ac2021-11-01 16:56:19 -070013AllowAllParametersOfDeclarationOnNextLine: true
Patrick Williams04c28fa2023-05-10 07:51:24 -050014AllowShortBlocksOnASingleLine: Empty
John Wedigbf8d6ac2021-11-01 16:56:19 -070015AllowShortCaseLabelsOnASingleLine: false
Patrick Williams04c28fa2023-05-10 07:51:24 -050016AllowShortFunctionsOnASingleLine: Empty
Patrick Williamsff1b64f2023-10-20 11:19:56 -050017AllowShortIfStatementsOnASingleLine: Never
18AllowShortLambdasOnASingleLine: true
John Wedigbf8d6ac2021-11-01 16:56:19 -070019AllowShortLoopsOnASingleLine: false
20AlwaysBreakAfterReturnType: None
21AlwaysBreakBeforeMultilineStrings: false
22AlwaysBreakTemplateDeclarations: Yes
23BinPackArguments: true
24BinPackParameters: true
Patrick Williamsff1b64f2023-10-20 11:19:56 -050025BitFieldColonSpacing: None
John Wedigbf8d6ac2021-11-01 16:56:19 -070026BraceWrapping:
27 AfterCaseLabel: true
28 AfterClass: true
29 AfterControlStatement: true
30 AfterEnum: true
Patrick Williamsff1b64f2023-10-20 11:19:56 -050031 AfterExternBlock: true
John Wedigbf8d6ac2021-11-01 16:56:19 -070032 AfterFunction: true
33 AfterNamespace: true
34 AfterObjCDeclaration: true
35 AfterStruct: true
36 AfterUnion: true
John Wedigbf8d6ac2021-11-01 16:56:19 -070037 BeforeCatch: true
38 BeforeElse: true
Patrick Williamsff1b64f2023-10-20 11:19:56 -050039 BeforeLambdaBody: false
40 BeforeWhile: false
John Wedigbf8d6ac2021-11-01 16:56:19 -070041 IndentBraces: false
42 SplitEmptyFunction: false
43 SplitEmptyRecord: false
44 SplitEmptyNamespace: false
Patrick Williams04c28fa2023-05-10 07:51:24 -050045BreakAfterAttributes: Never
John Wedigbf8d6ac2021-11-01 16:56:19 -070046BreakBeforeBinaryOperators: None
47BreakBeforeBraces: Custom
48BreakBeforeTernaryOperators: true
49BreakConstructorInitializers: AfterColon
50BreakInheritanceList: AfterColon
Patrick Williams04c28fa2023-05-10 07:51:24 -050051BreakStringLiterals: false
John Wedigbf8d6ac2021-11-01 16:56:19 -070052ColumnLimit: 80
53CommentPragmas: '^ IWYU pragma:'
54CompactNamespaces: false
John Wedigbf8d6ac2021-11-01 16:56:19 -070055ConstructorInitializerIndentWidth: 4
56ContinuationIndentWidth: 4
57Cpp11BracedListStyle: true
58DerivePointerAlignment: false
John Wedigbf8d6ac2021-11-01 16:56:19 -070059DisableFormat: false
John Wedigbf8d6ac2021-11-01 16:56:19 -070060FixNamespaceComments: true
Patrick Williamsff1b64f2023-10-20 11:19:56 -050061ForEachMacros:
62 - foreach
63 - Q_FOREACH
64 - BOOST_FOREACH
John Wedigbf8d6ac2021-11-01 16:56:19 -070065IncludeBlocks: Regroup
66IncludeCategories:
67 - Regex: '^[<"](gtest|gmock)'
68 Priority: 7
69 - Regex: '^"config.h"'
70 Priority: -1
71 - Regex: '^".*\.h"'
72 Priority: 1
73 - Regex: '^".*\.hpp"'
74 Priority: 2
75 - Regex: '^<.*\.h>'
76 Priority: 3
77 - Regex: '^<.*\.hpp>'
78 Priority: 4
79 - Regex: '^<.*'
80 Priority: 5
81 - Regex: '.*'
82 Priority: 6
83IndentCaseLabels: true
Patrick Williamsff1b64f2023-10-20 11:19:56 -050084IndentExternBlock: NoIndent
Patrick Williams04c28fa2023-05-10 07:51:24 -050085IndentRequiresClause: true
John Wedigbf8d6ac2021-11-01 16:56:19 -070086IndentWidth: 4
87IndentWrappedFunctionNames: true
Patrick Williams04c28fa2023-05-10 07:51:24 -050088InsertNewlineAtEOF: true
89KeepEmptyLinesAtTheStartOfBlocks: false
90LambdaBodyIndentation: OuterScope
91LineEnding: LF
John Wedigbf8d6ac2021-11-01 16:56:19 -070092MacroBlockBegin: ''
93MacroBlockEnd: ''
94MaxEmptyLinesToKeep: 1
95NamespaceIndentation: None
96ObjCBlockIndentWidth: 2
97ObjCSpaceAfterProperty: false
98ObjCSpaceBeforeProtocolList: true
Patrick Williamsff1b64f2023-10-20 11:19:56 -050099PackConstructorInitializers: BinPack
Patrick Williams04c28fa2023-05-10 07:51:24 -0500100PenaltyBreakAssignment: 25
John Wedigbf8d6ac2021-11-01 16:56:19 -0700101PenaltyBreakBeforeFirstCallParameter: 19
102PenaltyBreakComment: 300
103PenaltyBreakFirstLessLess: 120
104PenaltyBreakString: 1000
105PenaltyExcessCharacter: 1000000
106PenaltyReturnTypeOnItsOwnLine: 60
Patrick Williams04c28fa2023-05-10 07:51:24 -0500107PenaltyIndentedWhitespace: 0
Patrick Williamsff1b64f2023-10-20 11:19:56 -0500108PointerAlignment: Left
Patrick Williams04c28fa2023-05-10 07:51:24 -0500109QualifierAlignment: Left
110ReferenceAlignment: Left
John Wedigbf8d6ac2021-11-01 16:56:19 -0700111ReflowComments: true
Patrick Williams04c28fa2023-05-10 07:51:24 -0500112RequiresClausePosition: OwnLine
113RequiresExpressionIndentation: Keyword
Patrick Williamsff1b64f2023-10-20 11:19:56 -0500114SortIncludes: CaseSensitive
John Wedigbf8d6ac2021-11-01 16:56:19 -0700115SortUsingDeclarations: true
116SpaceAfterCStyleCast: false
117SpaceAfterTemplateKeyword: true
118SpaceBeforeAssignmentOperators: true
119SpaceBeforeCpp11BracedList: false
120SpaceBeforeCtorInitializerColon: true
121SpaceBeforeInheritanceColon: true
122SpaceBeforeParens: ControlStatements
123SpaceBeforeRangeBasedForLoopColon: true
124SpaceInEmptyParentheses: false
125SpacesBeforeTrailingComments: 1
Patrick Williamsff1b64f2023-10-20 11:19:56 -0500126SpacesInAngles: Never
John Wedigbf8d6ac2021-11-01 16:56:19 -0700127SpacesInContainerLiterals: true
128SpacesInCStyleCastParentheses: false
129SpacesInParentheses: false
130SpacesInSquareBrackets: false
131Standard: Latest
132TabWidth: 4
133UseTab: Never
134...
135