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