blob: d43e884dbbb3dae7d4099cba649bb733da65c09c [file] [log] [blame]
Gunnar Mills57d9c502018-09-14 14:42:34 -05001---
2Language: Cpp
3# BasedOnStyle: LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: Align
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
Patrick Williams89d734b2023-05-10 07:50:25 -05008AlignEscapedNewlines: Right
9AlignOperands: Align
10AlignTrailingComments:
11 Kind: Always
12 OverEmptyLines: 1
Gunnar Mills57d9c502018-09-14 14:42:34 -050013AllowAllParametersOfDeclarationOnNextLine: true
Patrick Williams89d734b2023-05-10 07:50:25 -050014AllowShortBlocksOnASingleLine: Empty
Gunnar Mills57d9c502018-09-14 14:42:34 -050015AllowShortCaseLabelsOnASingleLine: false
Patrick Williams89d734b2023-05-10 07:50:25 -050016AllowShortFunctionsOnASingleLine: Empty
Patrick Williams6f256bc2023-10-20 11:18:34 -050017AllowShortIfStatementsOnASingleLine: Never
18AllowShortLambdasOnASingleLine: true
Gunnar Mills57d9c502018-09-14 14:42:34 -050019AllowShortLoopsOnASingleLine: false
Gunnar Mills57d9c502018-09-14 14:42:34 -050020AlwaysBreakAfterReturnType: None
21AlwaysBreakBeforeMultilineStrings: false
Patrick Williams89d734b2023-05-10 07:50:25 -050022AlwaysBreakTemplateDeclarations: Yes
Gunnar Mills57d9c502018-09-14 14:42:34 -050023BinPackArguments: true
24BinPackParameters: true
Patrick Williams6f256bc2023-10-20 11:18:34 -050025BitFieldColonSpacing: None
Gunnar Mills57d9c502018-09-14 14:42:34 -050026BraceWrapping:
Manojkiran Edab6103f22020-05-28 09:45:01 +053027 AfterCaseLabel: true
Gunnar Mills57d9c502018-09-14 14:42:34 -050028 AfterClass: true
29 AfterControlStatement: true
30 AfterEnum: true
Patrick Williams6f256bc2023-10-20 11:18:34 -050031 AfterExternBlock: true
Gunnar Mills57d9c502018-09-14 14:42:34 -050032 AfterFunction: true
33 AfterNamespace: true
34 AfterObjCDeclaration: true
35 AfterStruct: true
36 AfterUnion: true
37 BeforeCatch: true
38 BeforeElse: true
Patrick Williams6f256bc2023-10-20 11:18:34 -050039 BeforeLambdaBody: false
40 BeforeWhile: false
Gunnar Mills57d9c502018-09-14 14:42:34 -050041 IndentBraces: false
Patrick Williams89d734b2023-05-10 07:50:25 -050042 SplitEmptyFunction: false
43 SplitEmptyRecord: false
44 SplitEmptyNamespace: false
45BreakAfterAttributes: Never
Gunnar Mills57d9c502018-09-14 14:42:34 -050046BreakBeforeBinaryOperators: None
47BreakBeforeBraces: Custom
48BreakBeforeTernaryOperators: true
49BreakConstructorInitializers: AfterColon
Patrick Williams89d734b2023-05-10 07:50:25 -050050BreakInheritanceList: AfterColon
51BreakStringLiterals: false
Gunnar Mills57d9c502018-09-14 14:42:34 -050052ColumnLimit: 80
53CommentPragmas: '^ IWYU pragma:'
Patrick Williams89d734b2023-05-10 07:50:25 -050054CompactNamespaces: false
Gunnar Mills57d9c502018-09-14 14:42:34 -050055ConstructorInitializerIndentWidth: 4
56ContinuationIndentWidth: 4
57Cpp11BracedListStyle: true
58DerivePointerAlignment: false
59DisableFormat: false
Gunnar Mills57d9c502018-09-14 14:42:34 -050060FixNamespaceComments: true
Patrick Williams6f256bc2023-10-20 11:18:34 -050061ForEachMacros:
62 - foreach
63 - Q_FOREACH
64 - BOOST_FOREACH
Gunnar Mills57d9c502018-09-14 14:42:34 -050065IncludeBlocks: Regroup
66IncludeCategories:
67 - Regex: '^[<"](gtest|gmock)'
Patrick Williams89d734b2023-05-10 07:50:25 -050068 Priority: 7
Gunnar Mills57d9c502018-09-14 14:42:34 -050069 - Regex: '^"config.h"'
70 Priority: -1
Patrick Williams89d734b2023-05-10 07:50:25 -050071 - Regex: '^".*\.h"'
Gunnar Mills57d9c502018-09-14 14:42:34 -050072 Priority: 1
Patrick Williams89d734b2023-05-10 07:50:25 -050073 - Regex: '^".*\.hpp"'
Gunnar Mills57d9c502018-09-14 14:42:34 -050074 Priority: 2
Patrick Williams89d734b2023-05-10 07:50:25 -050075 - Regex: '^<.*\.h>'
Gunnar Mills57d9c502018-09-14 14:42:34 -050076 Priority: 3
Patrick Williams89d734b2023-05-10 07:50:25 -050077 - Regex: '^<.*\.hpp>'
Gunnar Mills57d9c502018-09-14 14:42:34 -050078 Priority: 4
Patrick Williams89d734b2023-05-10 07:50:25 -050079 - Regex: '^<.*'
80 Priority: 5
81 - Regex: '.*'
82 Priority: 6
Gunnar Mills57d9c502018-09-14 14:42:34 -050083IndentCaseLabels: true
Patrick Williams89d734b2023-05-10 07:50:25 -050084IndentExternBlock: NoIndent
85IndentRequiresClause: true
Gunnar Mills57d9c502018-09-14 14:42:34 -050086IndentWidth: 4
87IndentWrappedFunctionNames: true
Patrick Williams89d734b2023-05-10 07:50:25 -050088InsertNewlineAtEOF: true
89KeepEmptyLinesAtTheStartOfBlocks: false
90LambdaBodyIndentation: OuterScope
91LineEnding: LF
Gunnar Mills57d9c502018-09-14 14:42:34 -050092MacroBlockBegin: ''
93MacroBlockEnd: ''
94MaxEmptyLinesToKeep: 1
95NamespaceIndentation: None
96ObjCBlockIndentWidth: 2
97ObjCSpaceAfterProperty: false
98ObjCSpaceBeforeProtocolList: true
Patrick Williams6f256bc2023-10-20 11:18:34 -050099PackConstructorInitializers: BinPack
Patrick Williams89d734b2023-05-10 07:50:25 -0500100PenaltyBreakAssignment: 25
Gunnar Mills57d9c502018-09-14 14:42:34 -0500101PenaltyBreakBeforeFirstCallParameter: 19
102PenaltyBreakComment: 300
103PenaltyBreakFirstLessLess: 120
104PenaltyBreakString: 1000
105PenaltyExcessCharacter: 1000000
106PenaltyReturnTypeOnItsOwnLine: 60
Patrick Williams89d734b2023-05-10 07:50:25 -0500107PenaltyIndentedWhitespace: 0
Patrick Williams6f256bc2023-10-20 11:18:34 -0500108PointerAlignment: Left
Patrick Williams89d734b2023-05-10 07:50:25 -0500109QualifierAlignment: Left
110ReferenceAlignment: Left
Gunnar Mills57d9c502018-09-14 14:42:34 -0500111ReflowComments: true
Patrick Williams89d734b2023-05-10 07:50:25 -0500112RequiresClausePosition: OwnLine
113RequiresExpressionIndentation: Keyword
Patrick Williams6f256bc2023-10-20 11:18:34 -0500114SortIncludes: CaseSensitive
Gunnar Mills57d9c502018-09-14 14:42:34 -0500115SortUsingDeclarations: true
116SpaceAfterCStyleCast: false
Patrick Williams89d734b2023-05-10 07:50:25 -0500117SpaceAfterTemplateKeyword: true
Gunnar Mills57d9c502018-09-14 14:42:34 -0500118SpaceBeforeAssignmentOperators: true
Patrick Williams89d734b2023-05-10 07:50:25 -0500119SpaceBeforeCpp11BracedList: false
120SpaceBeforeCtorInitializerColon: true
121SpaceBeforeInheritanceColon: true
Gunnar Mills57d9c502018-09-14 14:42:34 -0500122SpaceBeforeParens: ControlStatements
Patrick Williams89d734b2023-05-10 07:50:25 -0500123SpaceBeforeRangeBasedForLoopColon: true
Gunnar Mills57d9c502018-09-14 14:42:34 -0500124SpaceInEmptyParentheses: false
125SpacesBeforeTrailingComments: 1
Patrick Williams6f256bc2023-10-20 11:18:34 -0500126SpacesInAngles: Never
Gunnar Mills57d9c502018-09-14 14:42:34 -0500127SpacesInContainerLiterals: true
128SpacesInCStyleCastParentheses: false
129SpacesInParentheses: false
130SpacesInSquareBrackets: false
Patrick Williams89d734b2023-05-10 07:50:25 -0500131Standard: Latest
Gunnar Mills57d9c502018-09-14 14:42:34 -0500132TabWidth: 4
133UseTab: Never
134...
Patrick Williams89d734b2023-05-10 07:50:25 -0500135