blob: d43e884dbbb3dae7d4099cba649bb733da65c09c [file] [log] [blame]
Patrick Venture8f6c5152018-09-11 17:45:33 -07001---
2Language: Cpp
3# BasedOnStyle: LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: Align
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
Patrick Williams6ac6a342023-05-10 07:51:12 -05008AlignEscapedNewlines: Right
9AlignOperands: Align
10AlignTrailingComments:
11 Kind: Always
12 OverEmptyLines: 1
Patrick Venture8f6c5152018-09-11 17:45:33 -070013AllowAllParametersOfDeclarationOnNextLine: true
Patrick Williams6ac6a342023-05-10 07:51:12 -050014AllowShortBlocksOnASingleLine: Empty
Patrick Venture8f6c5152018-09-11 17:45:33 -070015AllowShortCaseLabelsOnASingleLine: false
Patrick Williams6ac6a342023-05-10 07:51:12 -050016AllowShortFunctionsOnASingleLine: Empty
Patrick Williams5c423702023-10-20 11:19:39 -050017AllowShortIfStatementsOnASingleLine: Never
18AllowShortLambdasOnASingleLine: true
Patrick Venture8f6c5152018-09-11 17:45:33 -070019AllowShortLoopsOnASingleLine: false
Patrick Venture8f6c5152018-09-11 17:45:33 -070020AlwaysBreakAfterReturnType: None
21AlwaysBreakBeforeMultilineStrings: false
Patrick Williams6ac6a342023-05-10 07:51:12 -050022AlwaysBreakTemplateDeclarations: Yes
Patrick Venture8f6c5152018-09-11 17:45:33 -070023BinPackArguments: true
24BinPackParameters: true
Patrick Williams5c423702023-10-20 11:19:39 -050025BitFieldColonSpacing: None
Patrick Venture8f6c5152018-09-11 17:45:33 -070026BraceWrapping:
Patrick Williams6ac6a342023-05-10 07:51:12 -050027 AfterCaseLabel: true
Patrick Venture8f6c5152018-09-11 17:45:33 -070028 AfterClass: true
29 AfterControlStatement: true
30 AfterEnum: true
Patrick Williams5c423702023-10-20 11:19:39 -050031 AfterExternBlock: true
Patrick Venture8f6c5152018-09-11 17:45:33 -070032 AfterFunction: true
33 AfterNamespace: true
34 AfterObjCDeclaration: true
35 AfterStruct: true
36 AfterUnion: true
37 BeforeCatch: true
38 BeforeElse: true
Patrick Williams5c423702023-10-20 11:19:39 -050039 BeforeLambdaBody: false
40 BeforeWhile: false
Patrick Venture8f6c5152018-09-11 17:45:33 -070041 IndentBraces: false
Patrick Williams6ac6a342023-05-10 07:51:12 -050042 SplitEmptyFunction: false
43 SplitEmptyRecord: false
44 SplitEmptyNamespace: false
45BreakAfterAttributes: Never
Patrick Venture8f6c5152018-09-11 17:45:33 -070046BreakBeforeBinaryOperators: None
47BreakBeforeBraces: Custom
48BreakBeforeTernaryOperators: true
49BreakConstructorInitializers: AfterColon
Patrick Williams6ac6a342023-05-10 07:51:12 -050050BreakInheritanceList: AfterColon
51BreakStringLiterals: false
Patrick Venture8f6c5152018-09-11 17:45:33 -070052ColumnLimit: 80
53CommentPragmas: '^ IWYU pragma:'
Patrick Williams6ac6a342023-05-10 07:51:12 -050054CompactNamespaces: false
Patrick Venture8f6c5152018-09-11 17:45:33 -070055ConstructorInitializerIndentWidth: 4
56ContinuationIndentWidth: 4
57Cpp11BracedListStyle: true
58DerivePointerAlignment: false
Patrick Venture8f6c5152018-09-11 17:45:33 -070059DisableFormat: false
Patrick Venture8f6c5152018-09-11 17:45:33 -070060FixNamespaceComments: true
Patrick Williams5c423702023-10-20 11:19:39 -050061ForEachMacros:
62 - foreach
63 - Q_FOREACH
64 - BOOST_FOREACH
Patrick Venture8f6c5152018-09-11 17:45:33 -070065IncludeBlocks: Regroup
66IncludeCategories:
67 - Regex: '^[<"](gtest|gmock)'
Patrick Williams6ac6a342023-05-10 07:51:12 -050068 Priority: 7
Patrick Venture8f6c5152018-09-11 17:45:33 -070069 - Regex: '^"config.h"'
70 Priority: -1
Patrick Williams6ac6a342023-05-10 07:51:12 -050071 - Regex: '^".*\.h"'
Patrick Venture8f6c5152018-09-11 17:45:33 -070072 Priority: 1
Patrick Williams6ac6a342023-05-10 07:51:12 -050073 - Regex: '^".*\.hpp"'
Patrick Venture8f6c5152018-09-11 17:45:33 -070074 Priority: 2
Patrick Williams6ac6a342023-05-10 07:51:12 -050075 - Regex: '^<.*\.h>'
Patrick Venture8f6c5152018-09-11 17:45:33 -070076 Priority: 3
Patrick Williams6ac6a342023-05-10 07:51:12 -050077 - Regex: '^<.*\.hpp>'
Patrick Venture8f6c5152018-09-11 17:45:33 -070078 Priority: 4
Patrick Williams6ac6a342023-05-10 07:51:12 -050079 - Regex: '^<.*'
80 Priority: 5
81 - Regex: '.*'
82 Priority: 6
Patrick Venture8f6c5152018-09-11 17:45:33 -070083IndentCaseLabels: true
Patrick Williams5c423702023-10-20 11:19:39 -050084IndentExternBlock: NoIndent
Patrick Williams6ac6a342023-05-10 07:51:12 -050085IndentRequiresClause: true
Patrick Venture8f6c5152018-09-11 17:45:33 -070086IndentWidth: 4
87IndentWrappedFunctionNames: true
Patrick Williams6ac6a342023-05-10 07:51:12 -050088InsertNewlineAtEOF: true
89KeepEmptyLinesAtTheStartOfBlocks: false
90LambdaBodyIndentation: OuterScope
91LineEnding: LF
Patrick Venture8f6c5152018-09-11 17:45:33 -070092MacroBlockBegin: ''
93MacroBlockEnd: ''
94MaxEmptyLinesToKeep: 1
95NamespaceIndentation: None
96ObjCBlockIndentWidth: 2
97ObjCSpaceAfterProperty: false
98ObjCSpaceBeforeProtocolList: true
Patrick Williams5c423702023-10-20 11:19:39 -050099PackConstructorInitializers: BinPack
Patrick Williams6ac6a342023-05-10 07:51:12 -0500100PenaltyBreakAssignment: 25
Patrick Venture8f6c5152018-09-11 17:45:33 -0700101PenaltyBreakBeforeFirstCallParameter: 19
102PenaltyBreakComment: 300
103PenaltyBreakFirstLessLess: 120
104PenaltyBreakString: 1000
105PenaltyExcessCharacter: 1000000
106PenaltyReturnTypeOnItsOwnLine: 60
Patrick Williams6ac6a342023-05-10 07:51:12 -0500107PenaltyIndentedWhitespace: 0
Patrick Williams5c423702023-10-20 11:19:39 -0500108PointerAlignment: Left
Patrick Williams6ac6a342023-05-10 07:51:12 -0500109QualifierAlignment: Left
110ReferenceAlignment: Left
Patrick Venture8f6c5152018-09-11 17:45:33 -0700111ReflowComments: true
Patrick Williams6ac6a342023-05-10 07:51:12 -0500112RequiresClausePosition: OwnLine
113RequiresExpressionIndentation: Keyword
Patrick Williams5c423702023-10-20 11:19:39 -0500114SortIncludes: CaseSensitive
Patrick Venture8f6c5152018-09-11 17:45:33 -0700115SortUsingDeclarations: true
116SpaceAfterCStyleCast: false
Patrick Williams6ac6a342023-05-10 07:51:12 -0500117SpaceAfterTemplateKeyword: true
Patrick Venture8f6c5152018-09-11 17:45:33 -0700118SpaceBeforeAssignmentOperators: true
Patrick Williams6ac6a342023-05-10 07:51:12 -0500119SpaceBeforeCpp11BracedList: false
120SpaceBeforeCtorInitializerColon: true
121SpaceBeforeInheritanceColon: true
Patrick Venture8f6c5152018-09-11 17:45:33 -0700122SpaceBeforeParens: ControlStatements
Patrick Williams6ac6a342023-05-10 07:51:12 -0500123SpaceBeforeRangeBasedForLoopColon: true
Patrick Venture8f6c5152018-09-11 17:45:33 -0700124SpaceInEmptyParentheses: false
125SpacesBeforeTrailingComments: 1
Patrick Williams5c423702023-10-20 11:19:39 -0500126SpacesInAngles: Never
Patrick Venture8f6c5152018-09-11 17:45:33 -0700127SpacesInContainerLiterals: true
128SpacesInCStyleCastParentheses: false
129SpacesInParentheses: false
130SpacesInSquareBrackets: false
Patrick Williams6ac6a342023-05-10 07:51:12 -0500131Standard: Latest
Patrick Venture8f6c5152018-09-11 17:45:33 -0700132TabWidth: 4
133UseTab: Never
134...
135