blob: d92a3f10a47b602bb47e3844ce15ebcf7fb92bbb [file] [log] [blame]
William A. Kennington III8f90e282018-07-17 14:40:14 -07001---
2Language: Cpp
3# BasedOnStyle: LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: Align
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
Patrick Williamsa8c11e32023-05-10 07:50:56 -05008AlignEscapedNewlines: Right
9AlignOperands: Align
10AlignTrailingComments:
11 Kind: Always
12 OverEmptyLines: 1
William A. Kennington III8f90e282018-07-17 14:40:14 -070013AllowAllParametersOfDeclarationOnNextLine: true
Patrick Williamsa8c11e32023-05-10 07:50:56 -050014AllowShortBlocksOnASingleLine: Empty
William A. Kennington III8f90e282018-07-17 14:40:14 -070015AllowShortCaseLabelsOnASingleLine: false
Patrick Williamsa8c11e32023-05-10 07:50:56 -050016AllowShortFunctionsOnASingleLine: Empty
William A. Kennington III8f90e282018-07-17 14:40:14 -070017AllowShortIfStatementsOnASingleLine: false
18AllowShortLoopsOnASingleLine: false
William A. Kennington III8f90e282018-07-17 14:40:14 -070019AlwaysBreakAfterReturnType: None
20AlwaysBreakBeforeMultilineStrings: false
Patrick Williamsa8c11e32023-05-10 07:50:56 -050021AlwaysBreakTemplateDeclarations: Yes
William A. Kennington III8f90e282018-07-17 14:40:14 -070022BinPackArguments: true
23BinPackParameters: true
24BraceWrapping:
Patrick Williamsa8c11e32023-05-10 07:50:56 -050025 AfterCaseLabel: true
William A. Kennington III8f90e282018-07-17 14:40:14 -070026 AfterClass: true
27 AfterControlStatement: true
28 AfterEnum: true
29 AfterFunction: true
30 AfterNamespace: true
31 AfterObjCDeclaration: true
32 AfterStruct: true
33 AfterUnion: true
Patrick Williamsa8c11e32023-05-10 07:50:56 -050034 AfterExternBlock: true
William A. Kennington III8f90e282018-07-17 14:40:14 -070035 BeforeCatch: true
36 BeforeElse: true
37 IndentBraces: false
Patrick Williamsa8c11e32023-05-10 07:50:56 -050038 SplitEmptyFunction: false
39 SplitEmptyRecord: false
40 SplitEmptyNamespace: false
41BreakAfterAttributes: Never
William A. Kennington III8f90e282018-07-17 14:40:14 -070042BreakBeforeBinaryOperators: None
43BreakBeforeBraces: Custom
44BreakBeforeTernaryOperators: true
45BreakConstructorInitializers: AfterColon
Patrick Williamsa8c11e32023-05-10 07:50:56 -050046BreakInheritanceList: AfterColon
47BreakStringLiterals: false
William A. Kennington III8f90e282018-07-17 14:40:14 -070048ColumnLimit: 80
49CommentPragmas: '^ IWYU pragma:'
Patrick Williamsa8c11e32023-05-10 07:50:56 -050050CompactNamespaces: false
William A. Kennington III8f90e282018-07-17 14:40:14 -070051ConstructorInitializerAllOnOneLineOrOnePerLine: false
52ConstructorInitializerIndentWidth: 4
53ContinuationIndentWidth: 4
54Cpp11BracedListStyle: true
Patrick Williamsa8c11e32023-05-10 07:50:56 -050055DeriveLineEnding: false
William A. Kennington III0a816c52018-07-17 14:40:14 -070056DerivePointerAlignment: false
William A. Kennington III8f90e282018-07-17 14:40:14 -070057PointerAlignment: Left
58DisableFormat: false
59ExperimentalAutoDetectBinPacking: false
60FixNamespaceComments: true
61ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
Patrick Williamsa8c11e32023-05-10 07:50:56 -050062IncludeBlocks: Regroup
63IncludeCategories:
64 - Regex: '^[<"](gtest|gmock)'
65 Priority: 7
66 - Regex: '^"config.h"'
67 Priority: -1
68 - Regex: '^".*\.h"'
69 Priority: 1
70 - Regex: '^".*\.hpp"'
71 Priority: 2
72 - Regex: '^<.*\.h>'
73 Priority: 3
74 - Regex: '^<.*\.hpp>'
75 Priority: 4
76 - Regex: '^<.*'
77 Priority: 5
78 - Regex: '.*'
79 Priority: 6
William A. Kennington III8f90e282018-07-17 14:40:14 -070080IndentCaseLabels: true
Patrick Williamsa8c11e32023-05-10 07:50:56 -050081IndentRequiresClause: true
William A. Kennington III8f90e282018-07-17 14:40:14 -070082IndentWidth: 4
83IndentWrappedFunctionNames: true
Patrick Williamsa8c11e32023-05-10 07:50:56 -050084InsertNewlineAtEOF: true
85KeepEmptyLinesAtTheStartOfBlocks: false
86LambdaBodyIndentation: OuterScope
87LineEnding: LF
William A. Kennington III8f90e282018-07-17 14:40:14 -070088MacroBlockBegin: ''
89MacroBlockEnd: ''
90MaxEmptyLinesToKeep: 1
91NamespaceIndentation: None
92ObjCBlockIndentWidth: 2
93ObjCSpaceAfterProperty: false
94ObjCSpaceBeforeProtocolList: true
Patrick Williamsa8c11e32023-05-10 07:50:56 -050095PenaltyBreakAssignment: 25
William A. Kennington III8f90e282018-07-17 14:40:14 -070096PenaltyBreakBeforeFirstCallParameter: 19
97PenaltyBreakComment: 300
98PenaltyBreakFirstLessLess: 120
99PenaltyBreakString: 1000
100PenaltyExcessCharacter: 1000000
101PenaltyReturnTypeOnItsOwnLine: 60
Patrick Williamsa8c11e32023-05-10 07:50:56 -0500102PenaltyIndentedWhitespace: 0
103QualifierAlignment: Left
104ReferenceAlignment: Left
William A. Kennington III8f90e282018-07-17 14:40:14 -0700105ReflowComments: true
Patrick Williamsa8c11e32023-05-10 07:50:56 -0500106RequiresClausePosition: OwnLine
107RequiresExpressionIndentation: Keyword
William A. Kennington III0a816c52018-07-17 14:40:14 -0700108SortIncludes: true
109SortUsingDeclarations: true
William A. Kennington III8f90e282018-07-17 14:40:14 -0700110SpaceAfterCStyleCast: false
Patrick Williamsa8c11e32023-05-10 07:50:56 -0500111SpaceAfterTemplateKeyword: true
William A. Kennington III8f90e282018-07-17 14:40:14 -0700112SpaceBeforeAssignmentOperators: true
Patrick Williamsa8c11e32023-05-10 07:50:56 -0500113SpaceBeforeCpp11BracedList: false
114SpaceBeforeCtorInitializerColon: true
115SpaceBeforeInheritanceColon: true
William A. Kennington III8f90e282018-07-17 14:40:14 -0700116SpaceBeforeParens: ControlStatements
Patrick Williamsa8c11e32023-05-10 07:50:56 -0500117SpaceBeforeRangeBasedForLoopColon: true
William A. Kennington III8f90e282018-07-17 14:40:14 -0700118SpaceInEmptyParentheses: false
119SpacesBeforeTrailingComments: 1
120SpacesInAngles: false
121SpacesInContainerLiterals: true
122SpacesInCStyleCastParentheses: false
123SpacesInParentheses: false
124SpacesInSquareBrackets: false
Patrick Williamsa8c11e32023-05-10 07:50:56 -0500125Standard: Latest
William A. Kennington III8f90e282018-07-17 14:40:14 -0700126TabWidth: 4
127UseTab: Never
128...
129