blob: d92a3f10a47b602bb47e3844ce15ebcf7fb92bbb [file] [log] [blame]
Ed Tanous167e2372018-05-07 11:59:10 -07001---
2Language: Cpp
3# BasedOnStyle: LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: Align
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
Brad Bishop23520882022-05-26 21:39:53 -04008AlignEscapedNewlines: Right
Brad Bishopa99e1092023-02-03 14:33:08 -05009AlignOperands: Align
Patrick Williams1a19e6a2023-05-10 07:51:32 -050010AlignTrailingComments:
11 Kind: Always
12 OverEmptyLines: 1
Ed Tanous167e2372018-05-07 11:59:10 -070013AllowAllParametersOfDeclarationOnNextLine: true
Brad Bishopa99e1092023-02-03 14:33:08 -050014AllowShortBlocksOnASingleLine: Empty
Ed Tanous167e2372018-05-07 11:59:10 -070015AllowShortCaseLabelsOnASingleLine: false
Brad Bishopa99e1092023-02-03 14:33:08 -050016AllowShortFunctionsOnASingleLine: Empty
Ed Tanous167e2372018-05-07 11:59:10 -070017AllowShortIfStatementsOnASingleLine: false
18AllowShortLoopsOnASingleLine: false
Ed Tanous167e2372018-05-07 11:59:10 -070019AlwaysBreakAfterReturnType: None
20AlwaysBreakBeforeMultilineStrings: false
Brad Bishop23520882022-05-26 21:39:53 -040021AlwaysBreakTemplateDeclarations: Yes
Ed Tanous167e2372018-05-07 11:59:10 -070022BinPackArguments: true
23BinPackParameters: true
24BraceWrapping:
Brad Bishop23520882022-05-26 21:39:53 -040025 AfterCaseLabel: true
Ed Tanous167e2372018-05-07 11:59:10 -070026 AfterClass: true
27 AfterControlStatement: true
28 AfterEnum: true
29 AfterFunction: true
30 AfterNamespace: true
31 AfterObjCDeclaration: true
32 AfterStruct: true
33 AfterUnion: true
Brad Bishop23520882022-05-26 21:39:53 -040034 AfterExternBlock: true
Ed Tanous167e2372018-05-07 11:59:10 -070035 BeforeCatch: true
36 BeforeElse: true
37 IndentBraces: false
Brad Bishop23520882022-05-26 21:39:53 -040038 SplitEmptyFunction: false
39 SplitEmptyRecord: false
40 SplitEmptyNamespace: false
Patrick Williams1a19e6a2023-05-10 07:51:32 -050041BreakAfterAttributes: Never
Ed Tanous167e2372018-05-07 11:59:10 -070042BreakBeforeBinaryOperators: None
43BreakBeforeBraces: Custom
44BreakBeforeTernaryOperators: true
45BreakConstructorInitializers: AfterColon
Brad Bishop23520882022-05-26 21:39:53 -040046BreakInheritanceList: AfterColon
47BreakStringLiterals: false
Ed Tanous167e2372018-05-07 11:59:10 -070048ColumnLimit: 80
49CommentPragmas: '^ IWYU pragma:'
Brad Bishop23520882022-05-26 21:39:53 -040050CompactNamespaces: false
Ed Tanous167e2372018-05-07 11:59:10 -070051ConstructorInitializerAllOnOneLineOrOnePerLine: false
52ConstructorInitializerIndentWidth: 4
53ContinuationIndentWidth: 4
54Cpp11BracedListStyle: true
Brad Bishop23520882022-05-26 21:39:53 -040055DeriveLineEnding: false
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050056DerivePointerAlignment: false
Brad Bishop23520882022-05-26 21:39:53 -040057PointerAlignment: Left
Ed Tanous167e2372018-05-07 11:59:10 -070058DisableFormat: false
59ExperimentalAutoDetectBinPacking: false
60FixNamespaceComments: true
61ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050062IncludeBlocks: Regroup
63IncludeCategories:
64 - Regex: '^[<"](gtest|gmock)'
Brad Bishop23520882022-05-26 21:39:53 -040065 Priority: 7
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050066 - Regex: '^"config.h"'
67 Priority: -1
Brad Bishop23520882022-05-26 21:39:53 -040068 - Regex: '^".*\.h"'
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050069 Priority: 1
Brad Bishop23520882022-05-26 21:39:53 -040070 - Regex: '^".*\.hpp"'
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050071 Priority: 2
Brad Bishop23520882022-05-26 21:39:53 -040072 - Regex: '^<.*\.h>'
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050073 Priority: 3
Brad Bishop23520882022-05-26 21:39:53 -040074 - Regex: '^<.*\.hpp>'
Matt Spinlercc6ee9c2018-09-19 13:23:13 -050075 Priority: 4
Brad Bishop23520882022-05-26 21:39:53 -040076 - Regex: '^<.*'
77 Priority: 5
78 - Regex: '.*'
79 Priority: 6
Ed Tanous167e2372018-05-07 11:59:10 -070080IndentCaseLabels: true
Brad Bishopa99e1092023-02-03 14:33:08 -050081IndentRequiresClause: true
Ed Tanous167e2372018-05-07 11:59:10 -070082IndentWidth: 4
83IndentWrappedFunctionNames: true
Patrick Williams1a19e6a2023-05-10 07:51:32 -050084InsertNewlineAtEOF: true
Brad Bishop23520882022-05-26 21:39:53 -040085KeepEmptyLinesAtTheStartOfBlocks: false
Patrick Williams670edd12023-02-15 15:06:52 -060086LambdaBodyIndentation: OuterScope
Patrick Williams1a19e6a2023-05-10 07:51:32 -050087LineEnding: LF
Ed Tanous167e2372018-05-07 11:59:10 -070088MacroBlockBegin: ''
89MacroBlockEnd: ''
90MaxEmptyLinesToKeep: 1
91NamespaceIndentation: None
92ObjCBlockIndentWidth: 2
93ObjCSpaceAfterProperty: false
94ObjCSpaceBeforeProtocolList: true
Brad Bishopa99e1092023-02-03 14:33:08 -050095PenaltyBreakAssignment: 25
Ed Tanous167e2372018-05-07 11:59:10 -070096PenaltyBreakBeforeFirstCallParameter: 19
97PenaltyBreakComment: 300
98PenaltyBreakFirstLessLess: 120
99PenaltyBreakString: 1000
100PenaltyExcessCharacter: 1000000
101PenaltyReturnTypeOnItsOwnLine: 60
Brad Bishopa99e1092023-02-03 14:33:08 -0500102PenaltyIndentedWhitespace: 0
103QualifierAlignment: Left
104ReferenceAlignment: Left
Ed Tanous167e2372018-05-07 11:59:10 -0700105ReflowComments: true
Brad Bishopa99e1092023-02-03 14:33:08 -0500106RequiresClausePosition: OwnLine
Patrick Williams1a19e6a2023-05-10 07:51:32 -0500107RequiresExpressionIndentation: Keyword
Matt Spinlercc6ee9c2018-09-19 13:23:13 -0500108SortIncludes: true
109SortUsingDeclarations: true
Ed Tanous167e2372018-05-07 11:59:10 -0700110SpaceAfterCStyleCast: false
Brad Bishop23520882022-05-26 21:39:53 -0400111SpaceAfterTemplateKeyword: true
Ed Tanous167e2372018-05-07 11:59:10 -0700112SpaceBeforeAssignmentOperators: true
Brad Bishop23520882022-05-26 21:39:53 -0400113SpaceBeforeCpp11BracedList: false
114SpaceBeforeCtorInitializerColon: true
115SpaceBeforeInheritanceColon: true
Ed Tanous167e2372018-05-07 11:59:10 -0700116SpaceBeforeParens: ControlStatements
Brad Bishop23520882022-05-26 21:39:53 -0400117SpaceBeforeRangeBasedForLoopColon: true
Ed Tanous167e2372018-05-07 11:59:10 -0700118SpaceInEmptyParentheses: false
119SpacesBeforeTrailingComments: 1
120SpacesInAngles: false
121SpacesInContainerLiterals: true
122SpacesInCStyleCastParentheses: false
123SpacesInParentheses: false
124SpacesInSquareBrackets: false
Brad Bishop23520882022-05-26 21:39:53 -0400125Standard: Latest
Ed Tanous167e2372018-05-07 11:59:10 -0700126TabWidth: 4
127UseTab: Never
128...
Brad Bishop23520882022-05-26 21:39:53 -0400129