blob: 28e3328699128f61f3c477bf0baeaec13e4ba107 [file] [log] [blame]
Patrick Venture5a4f6552018-11-02 11:23:39 -07001---
2Language: Cpp
3# BasedOnStyle: LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: Align
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
Patrick Venture9b37b092020-05-28 20:58:57 -07008AlignEscapedNewlines: Right
Patrick Williams10388362023-05-10 07:51:09 -05009AlignOperands: Align
10AlignTrailingComments:
11 Kind: Always
12 OverEmptyLines: 1
Patrick Venture5a4f6552018-11-02 11:23:39 -070013AllowAllParametersOfDeclarationOnNextLine: true
Patrick Williams10388362023-05-10 07:51:09 -050014AllowShortBlocksOnASingleLine: Empty
Patrick Venture5a4f6552018-11-02 11:23:39 -070015AllowShortCaseLabelsOnASingleLine: false
Patrick Williams10388362023-05-10 07:51:09 -050016AllowShortFunctionsOnASingleLine: Empty
Patrick Williamsa9423462023-10-20 11:19:36 -050017AllowShortIfStatementsOnASingleLine: Never
18AllowShortLambdasOnASingleLine: true
Patrick Venture5a4f6552018-11-02 11:23:39 -070019AllowShortLoopsOnASingleLine: false
Patrick Venture5a4f6552018-11-02 11:23:39 -070020AlwaysBreakAfterReturnType: None
21AlwaysBreakBeforeMultilineStrings: false
Patrick Venture9b37b092020-05-28 20:58:57 -070022AlwaysBreakTemplateDeclarations: Yes
Patrick Venture5a4f6552018-11-02 11:23:39 -070023BinPackArguments: true
24BinPackParameters: true
Patrick Williamsa9423462023-10-20 11:19:36 -050025BitFieldColonSpacing: None
Patrick Venture5a4f6552018-11-02 11:23:39 -070026BraceWrapping:
Patrick Venture9b37b092020-05-28 20:58:57 -070027 AfterCaseLabel: true
Patrick Venture5a4f6552018-11-02 11:23:39 -070028 AfterClass: true
29 AfterControlStatement: true
30 AfterEnum: true
Patrick Williamsa9423462023-10-20 11:19:36 -050031 AfterExternBlock: true
Patrick Venture5a4f6552018-11-02 11:23:39 -070032 AfterFunction: true
33 AfterNamespace: true
34 AfterObjCDeclaration: true
35 AfterStruct: true
36 AfterUnion: true
37 BeforeCatch: true
38 BeforeElse: true
Patrick Williamsa9423462023-10-20 11:19:36 -050039 BeforeLambdaBody: false
40 BeforeWhile: false
Patrick Venture5a4f6552018-11-02 11:23:39 -070041 IndentBraces: false
Patrick Venture9b37b092020-05-28 20:58:57 -070042 SplitEmptyFunction: false
43 SplitEmptyRecord: false
44 SplitEmptyNamespace: false
Patrick Williams10388362023-05-10 07:51:09 -050045BreakAfterAttributes: Never
Patrick Venture5a4f6552018-11-02 11:23:39 -070046BreakBeforeBinaryOperators: None
47BreakBeforeBraces: Custom
48BreakBeforeTernaryOperators: true
49BreakConstructorInitializers: AfterColon
Patrick Venture9b37b092020-05-28 20:58:57 -070050BreakInheritanceList: AfterColon
Patrick Williams10388362023-05-10 07:51:09 -050051BreakStringLiterals: false
Patrick Venture5a4f6552018-11-02 11:23:39 -070052ColumnLimit: 80
53CommentPragmas: '^ IWYU pragma:'
Patrick Venture9b37b092020-05-28 20:58:57 -070054CompactNamespaces: false
Patrick Venture5a4f6552018-11-02 11:23:39 -070055ConstructorInitializerIndentWidth: 4
56ContinuationIndentWidth: 4
57Cpp11BracedListStyle: true
58DerivePointerAlignment: false
Patrick Venture5a4f6552018-11-02 11:23:39 -070059DisableFormat: false
Patrick Venture5a4f6552018-11-02 11:23:39 -070060FixNamespaceComments: true
Patrick Williamsa9423462023-10-20 11:19:36 -050061ForEachMacros:
62 - foreach
63 - Q_FOREACH
64 - BOOST_FOREACH
Patrick Venture5a4f6552018-11-02 11:23:39 -070065IncludeBlocks: Regroup
66IncludeCategories:
67 - Regex: '^[<"](gtest|gmock)'
Patrick Venture9b37b092020-05-28 20:58:57 -070068 Priority: 7
Patrick Venture5a4f6552018-11-02 11:23:39 -070069 - Regex: '^"config.h"'
70 Priority: -1
Patrick Venture9b37b092020-05-28 20:58:57 -070071 - Regex: '^".*\.h"'
Patrick Venture5a4f6552018-11-02 11:23:39 -070072 Priority: 1
Patrick Venture9b37b092020-05-28 20:58:57 -070073 - Regex: '^".*\.hpp"'
Patrick Venture5a4f6552018-11-02 11:23:39 -070074 Priority: 2
Patrick Venture9b37b092020-05-28 20:58:57 -070075 - Regex: '^<.*\.h>'
Patrick Venture5a4f6552018-11-02 11:23:39 -070076 Priority: 3
Patrick Venture9b37b092020-05-28 20:58:57 -070077 - Regex: '^<.*\.hpp>'
Patrick Venture5a4f6552018-11-02 11:23:39 -070078 Priority: 4
Patrick Venture9b37b092020-05-28 20:58:57 -070079 - Regex: '^<.*'
80 Priority: 5
81 - Regex: '.*'
82 Priority: 6
Patrick Venture5a4f6552018-11-02 11:23:39 -070083IndentCaseLabels: true
Patrick Williamsa9423462023-10-20 11:19:36 -050084IndentExternBlock: NoIndent
Patrick Williams10388362023-05-10 07:51:09 -050085IndentRequiresClause: true
Patrick Venture5a4f6552018-11-02 11:23:39 -070086IndentWidth: 4
87IndentWrappedFunctionNames: true
Patrick Williams10388362023-05-10 07:51:09 -050088InsertNewlineAtEOF: true
89KeepEmptyLinesAtTheStartOfBlocks: false
Patrick Williams42a44c22024-08-16 15:21:32 -040090LambdaBodyIndentation: Signature
Patrick Williams10388362023-05-10 07:51:09 -050091LineEnding: LF
Patrick Venture5a4f6552018-11-02 11:23:39 -070092MacroBlockBegin: ''
93MacroBlockEnd: ''
94MaxEmptyLinesToKeep: 1
95NamespaceIndentation: None
96ObjCBlockIndentWidth: 2
97ObjCSpaceAfterProperty: false
98ObjCSpaceBeforeProtocolList: true
Patrick Williamsa9423462023-10-20 11:19:36 -050099PackConstructorInitializers: BinPack
Patrick Williams10388362023-05-10 07:51:09 -0500100PenaltyBreakAssignment: 25
Patrick Williams42a44c22024-08-16 15:21:32 -0400101PenaltyBreakBeforeFirstCallParameter: 50
Patrick Venture5a4f6552018-11-02 11:23:39 -0700102PenaltyBreakComment: 300
103PenaltyBreakFirstLessLess: 120
104PenaltyBreakString: 1000
Patrick Williams42a44c22024-08-16 15:21:32 -0400105PenaltyBreakTemplateDeclaration: 10
Patrick Venture5a4f6552018-11-02 11:23:39 -0700106PenaltyExcessCharacter: 1000000
107PenaltyReturnTypeOnItsOwnLine: 60
Patrick Williams42a44c22024-08-16 15:21:32 -0400108PenaltyIndentedWhitespace: 1
Patrick Williamsa9423462023-10-20 11:19:36 -0500109PointerAlignment: Left
Patrick Williams10388362023-05-10 07:51:09 -0500110QualifierAlignment: Left
111ReferenceAlignment: Left
Patrick Venture5a4f6552018-11-02 11:23:39 -0700112ReflowComments: true
Patrick Williams10388362023-05-10 07:51:09 -0500113RequiresClausePosition: OwnLine
114RequiresExpressionIndentation: Keyword
Patrick Williamsa9423462023-10-20 11:19:36 -0500115SortIncludes: CaseSensitive
Patrick Venture5a4f6552018-11-02 11:23:39 -0700116SortUsingDeclarations: true
117SpaceAfterCStyleCast: false
Patrick Venture9b37b092020-05-28 20:58:57 -0700118SpaceAfterTemplateKeyword: true
Patrick Venture5a4f6552018-11-02 11:23:39 -0700119SpaceBeforeAssignmentOperators: true
Patrick Venture9b37b092020-05-28 20:58:57 -0700120SpaceBeforeCpp11BracedList: false
121SpaceBeforeCtorInitializerColon: true
122SpaceBeforeInheritanceColon: true
Patrick Venture5a4f6552018-11-02 11:23:39 -0700123SpaceBeforeParens: ControlStatements
Patrick Venture9b37b092020-05-28 20:58:57 -0700124SpaceBeforeRangeBasedForLoopColon: true
Patrick Venture5a4f6552018-11-02 11:23:39 -0700125SpaceInEmptyParentheses: false
126SpacesBeforeTrailingComments: 1
Patrick Williamsa9423462023-10-20 11:19:36 -0500127SpacesInAngles: Never
Patrick Venture5a4f6552018-11-02 11:23:39 -0700128SpacesInContainerLiterals: true
129SpacesInCStyleCastParentheses: false
130SpacesInParentheses: false
131SpacesInSquareBrackets: false
Patrick Williams10388362023-05-10 07:51:09 -0500132Standard: Latest
Patrick Venture5a4f6552018-11-02 11:23:39 -0700133TabWidth: 4
134UseTab: Never
135...
136