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