blob: 28e3328699128f61f3c477bf0baeaec13e4ba107 [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
Patrick Williams0249f9e2023-10-20 11:19:18 -050017AllowShortIfStatementsOnASingleLine: Never
18AllowShortLambdasOnASingleLine: true
William A. Kennington III8f90e282018-07-17 14:40:14 -070019AllowShortLoopsOnASingleLine: false
William A. Kennington III8f90e282018-07-17 14:40:14 -070020AlwaysBreakAfterReturnType: None
21AlwaysBreakBeforeMultilineStrings: false
Patrick Williamsa8c11e32023-05-10 07:50:56 -050022AlwaysBreakTemplateDeclarations: Yes
William A. Kennington III8f90e282018-07-17 14:40:14 -070023BinPackArguments: true
24BinPackParameters: true
Patrick Williams0249f9e2023-10-20 11:19:18 -050025BitFieldColonSpacing: None
William A. Kennington III8f90e282018-07-17 14:40:14 -070026BraceWrapping:
Patrick Williamsa8c11e32023-05-10 07:50:56 -050027 AfterCaseLabel: true
William A. Kennington III8f90e282018-07-17 14:40:14 -070028 AfterClass: true
29 AfterControlStatement: true
30 AfterEnum: true
Patrick Williams0249f9e2023-10-20 11:19:18 -050031 AfterExternBlock: true
William A. Kennington III8f90e282018-07-17 14:40:14 -070032 AfterFunction: true
33 AfterNamespace: true
34 AfterObjCDeclaration: true
35 AfterStruct: true
36 AfterUnion: true
37 BeforeCatch: true
38 BeforeElse: true
Patrick Williams0249f9e2023-10-20 11:19:18 -050039 BeforeLambdaBody: false
40 BeforeWhile: false
William A. Kennington III8f90e282018-07-17 14:40:14 -070041 IndentBraces: false
Patrick Williamsa8c11e32023-05-10 07:50:56 -050042 SplitEmptyFunction: false
43 SplitEmptyRecord: false
44 SplitEmptyNamespace: false
45BreakAfterAttributes: Never
William A. Kennington III8f90e282018-07-17 14:40:14 -070046BreakBeforeBinaryOperators: None
47BreakBeforeBraces: Custom
48BreakBeforeTernaryOperators: true
49BreakConstructorInitializers: AfterColon
Patrick Williamsa8c11e32023-05-10 07:50:56 -050050BreakInheritanceList: AfterColon
51BreakStringLiterals: false
William A. Kennington III8f90e282018-07-17 14:40:14 -070052ColumnLimit: 80
53CommentPragmas: '^ IWYU pragma:'
Patrick Williamsa8c11e32023-05-10 07:50:56 -050054CompactNamespaces: false
William A. Kennington III8f90e282018-07-17 14:40:14 -070055ConstructorInitializerIndentWidth: 4
56ContinuationIndentWidth: 4
57Cpp11BracedListStyle: true
William A. Kennington III0a816c52018-07-17 14:40:14 -070058DerivePointerAlignment: false
William A. Kennington III8f90e282018-07-17 14:40:14 -070059DisableFormat: false
William A. Kennington III8f90e282018-07-17 14:40:14 -070060FixNamespaceComments: true
Patrick Williams0249f9e2023-10-20 11:19:18 -050061ForEachMacros:
62 - foreach
63 - Q_FOREACH
64 - BOOST_FOREACH
Patrick Williamsa8c11e32023-05-10 07:50:56 -050065IncludeBlocks: Regroup
66IncludeCategories:
67 - Regex: '^[<"](gtest|gmock)'
68 Priority: 7
69 - Regex: '^"config.h"'
70 Priority: -1
71 - Regex: '^".*\.h"'
72 Priority: 1
73 - Regex: '^".*\.hpp"'
74 Priority: 2
75 - Regex: '^<.*\.h>'
76 Priority: 3
77 - Regex: '^<.*\.hpp>'
78 Priority: 4
79 - Regex: '^<.*'
80 Priority: 5
81 - Regex: '.*'
82 Priority: 6
William A. Kennington III8f90e282018-07-17 14:40:14 -070083IndentCaseLabels: true
Patrick Williams0249f9e2023-10-20 11:19:18 -050084IndentExternBlock: NoIndent
Patrick Williamsa8c11e32023-05-10 07:50:56 -050085IndentRequiresClause: true
William A. Kennington III8f90e282018-07-17 14:40:14 -070086IndentWidth: 4
87IndentWrappedFunctionNames: true
Patrick Williamsa8c11e32023-05-10 07:50:56 -050088InsertNewlineAtEOF: true
89KeepEmptyLinesAtTheStartOfBlocks: false
Patrick Williams18db9a32024-08-16 15:21:04 -040090LambdaBodyIndentation: Signature
Patrick Williamsa8c11e32023-05-10 07:50:56 -050091LineEnding: LF
William A. Kennington III8f90e282018-07-17 14:40:14 -070092MacroBlockBegin: ''
93MacroBlockEnd: ''
94MaxEmptyLinesToKeep: 1
95NamespaceIndentation: None
96ObjCBlockIndentWidth: 2
97ObjCSpaceAfterProperty: false
98ObjCSpaceBeforeProtocolList: true
Patrick Williams0249f9e2023-10-20 11:19:18 -050099PackConstructorInitializers: BinPack
Patrick Williamsa8c11e32023-05-10 07:50:56 -0500100PenaltyBreakAssignment: 25
Patrick Williams18db9a32024-08-16 15:21:04 -0400101PenaltyBreakBeforeFirstCallParameter: 50
William A. Kennington III8f90e282018-07-17 14:40:14 -0700102PenaltyBreakComment: 300
103PenaltyBreakFirstLessLess: 120
104PenaltyBreakString: 1000
Patrick Williams18db9a32024-08-16 15:21:04 -0400105PenaltyBreakTemplateDeclaration: 10
William A. Kennington III8f90e282018-07-17 14:40:14 -0700106PenaltyExcessCharacter: 1000000
107PenaltyReturnTypeOnItsOwnLine: 60
Patrick Williams18db9a32024-08-16 15:21:04 -0400108PenaltyIndentedWhitespace: 1
Patrick Williams0249f9e2023-10-20 11:19:18 -0500109PointerAlignment: Left
Patrick Williamsa8c11e32023-05-10 07:50:56 -0500110QualifierAlignment: Left
111ReferenceAlignment: Left
William A. Kennington III8f90e282018-07-17 14:40:14 -0700112ReflowComments: true
Patrick Williamsa8c11e32023-05-10 07:50:56 -0500113RequiresClausePosition: OwnLine
114RequiresExpressionIndentation: Keyword
Patrick Williams0249f9e2023-10-20 11:19:18 -0500115SortIncludes: CaseSensitive
William A. Kennington III0a816c52018-07-17 14:40:14 -0700116SortUsingDeclarations: true
William A. Kennington III8f90e282018-07-17 14:40:14 -0700117SpaceAfterCStyleCast: false
Patrick Williamsa8c11e32023-05-10 07:50:56 -0500118SpaceAfterTemplateKeyword: true
William A. Kennington III8f90e282018-07-17 14:40:14 -0700119SpaceBeforeAssignmentOperators: true
Patrick Williamsa8c11e32023-05-10 07:50:56 -0500120SpaceBeforeCpp11BracedList: false
121SpaceBeforeCtorInitializerColon: true
122SpaceBeforeInheritanceColon: true
William A. Kennington III8f90e282018-07-17 14:40:14 -0700123SpaceBeforeParens: ControlStatements
Patrick Williamsa8c11e32023-05-10 07:50:56 -0500124SpaceBeforeRangeBasedForLoopColon: true
William A. Kennington III8f90e282018-07-17 14:40:14 -0700125SpaceInEmptyParentheses: false
126SpacesBeforeTrailingComments: 1
Patrick Williams0249f9e2023-10-20 11:19:18 -0500127SpacesInAngles: Never
William A. Kennington III8f90e282018-07-17 14:40:14 -0700128SpacesInContainerLiterals: true
129SpacesInCStyleCastParentheses: false
130SpacesInParentheses: false
131SpacesInSquareBrackets: false
Patrick Williamsa8c11e32023-05-10 07:50:56 -0500132Standard: Latest
William A. Kennington III8f90e282018-07-17 14:40:14 -0700133TabWidth: 4
134UseTab: Never
135...
136