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