blob: 82c0e2c087ac3f4500c3f2659ef15a43ebe48bb1 [file] [log] [blame]
Patrick Venture0dcc4302018-09-24 10:39:54 -07001---
2Language: Cpp
3# BasedOnStyle: LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: Align
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
Zane Shelley9a71ea12019-10-29 11:16:13 -05008AlignEscapedNewlines: Right
Patrick Williamsc742fe82022-09-29 20:21:39 -05009AlignOperands: Align
Patrick Venture0dcc4302018-09-24 10:39:54 -070010AlignTrailingComments: true
11AllowAllParametersOfDeclarationOnNextLine: true
Patrick Williams3547af12022-08-26 10:48:47 -050012AllowShortBlocksOnASingleLine: Empty
Patrick Venture0dcc4302018-09-24 10:39:54 -070013AllowShortCaseLabelsOnASingleLine: false
Patrick Williams3547af12022-08-26 10:48:47 -050014AllowShortFunctionsOnASingleLine: Empty
Patrick Venture0dcc4302018-09-24 10:39:54 -070015AllowShortIfStatementsOnASingleLine: false
16AllowShortLoopsOnASingleLine: false
Patrick Venture0dcc4302018-09-24 10:39:54 -070017AlwaysBreakAfterReturnType: None
18AlwaysBreakBeforeMultilineStrings: false
Zane Shelley9a71ea12019-10-29 11:16:13 -050019AlwaysBreakTemplateDeclarations: Yes
Patrick Venture0dcc4302018-09-24 10:39:54 -070020BinPackArguments: true
21BinPackParameters: true
22BraceWrapping:
Patrick Williamsb6de1962020-05-21 15:10:06 -050023 AfterCaseLabel: true
Patrick Venture0dcc4302018-09-24 10:39:54 -070024 AfterClass: true
25 AfterControlStatement: true
26 AfterEnum: true
27 AfterFunction: true
28 AfterNamespace: true
29 AfterObjCDeclaration: true
30 AfterStruct: true
31 AfterUnion: true
Zane Shelley9a71ea12019-10-29 11:16:13 -050032 AfterExternBlock: true
Patrick Venture0dcc4302018-09-24 10:39:54 -070033 BeforeCatch: true
34 BeforeElse: true
35 IndentBraces: false
Zane Shelley9a71ea12019-10-29 11:16:13 -050036 SplitEmptyFunction: false
37 SplitEmptyRecord: false
38 SplitEmptyNamespace: false
Patrick Venture0dcc4302018-09-24 10:39:54 -070039BreakBeforeBinaryOperators: None
40BreakBeforeBraces: Custom
41BreakBeforeTernaryOperators: true
42BreakConstructorInitializers: AfterColon
Zane Shelley9a71ea12019-10-29 11:16:13 -050043BreakInheritanceList: AfterColon
Andrew Jeffery9e5bbd02021-08-06 10:29:36 +093044BreakStringLiterals: false
Patrick Venture0dcc4302018-09-24 10:39:54 -070045ColumnLimit: 80
46CommentPragmas: '^ IWYU pragma:'
Zane Shelley9a71ea12019-10-29 11:16:13 -050047CompactNamespaces: false
Patrick Venture0dcc4302018-09-24 10:39:54 -070048ConstructorInitializerAllOnOneLineOrOnePerLine: false
49ConstructorInitializerIndentWidth: 4
50ContinuationIndentWidth: 4
51Cpp11BracedListStyle: true
Patrick Williams2f52b0a2021-11-10 15:59:37 -060052DeriveLineEnding: false
Patrick Venture0dcc4302018-09-24 10:39:54 -070053DerivePointerAlignment: false
54PointerAlignment: Left
55DisableFormat: false
56ExperimentalAutoDetectBinPacking: false
57FixNamespaceComments: true
58ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
59IncludeBlocks: Regroup
60IncludeCategories:
61 - Regex: '^[<"](gtest|gmock)'
Zane Shelley9a71ea12019-10-29 11:16:13 -050062 Priority: 7
Patrick Venture0dcc4302018-09-24 10:39:54 -070063 - Regex: '^"config.h"'
64 Priority: -1
Zane Shelley9a71ea12019-10-29 11:16:13 -050065 - Regex: '^".*\.h"'
Patrick Venture0dcc4302018-09-24 10:39:54 -070066 Priority: 1
Zane Shelley9a71ea12019-10-29 11:16:13 -050067 - Regex: '^".*\.hpp"'
Patrick Venture0dcc4302018-09-24 10:39:54 -070068 Priority: 2
Zane Shelley9a71ea12019-10-29 11:16:13 -050069 - Regex: '^<.*\.h>'
Patrick Venture0dcc4302018-09-24 10:39:54 -070070 Priority: 3
Zane Shelley9a71ea12019-10-29 11:16:13 -050071 - Regex: '^<.*\.hpp>'
Patrick Venture0dcc4302018-09-24 10:39:54 -070072 Priority: 4
Zane Shelley9a71ea12019-10-29 11:16:13 -050073 - Regex: '^<.*'
74 Priority: 5
75 - Regex: '.*'
76 Priority: 6
Patrick Venture0dcc4302018-09-24 10:39:54 -070077IndentCaseLabels: true
Patrick Williams06136282022-09-29 20:24:29 -050078IndentRequiresClause: true
Patrick Venture0dcc4302018-09-24 10:39:54 -070079IndentWidth: 4
80IndentWrappedFunctionNames: true
Brad Bishopac5d5442022-05-16 08:31:49 -040081KeepEmptyLinesAtTheStartOfBlocks: false
Andrew Jeffery22319392023-02-08 11:01:50 +103082LambdaBodyIndentation: OuterScope
Patrick Venture0dcc4302018-09-24 10:39:54 -070083MacroBlockBegin: ''
84MacroBlockEnd: ''
85MaxEmptyLinesToKeep: 1
86NamespaceIndentation: None
87ObjCBlockIndentWidth: 2
88ObjCSpaceAfterProperty: false
89ObjCSpaceBeforeProtocolList: true
Patrick Williamsba68be62022-09-29 20:18:17 -050090PenaltyBreakAssignment: 25
Patrick Venture0dcc4302018-09-24 10:39:54 -070091PenaltyBreakBeforeFirstCallParameter: 19
92PenaltyBreakComment: 300
93PenaltyBreakFirstLessLess: 120
94PenaltyBreakString: 1000
95PenaltyExcessCharacter: 1000000
96PenaltyReturnTypeOnItsOwnLine: 60
Patrick Williamsba68be62022-09-29 20:18:17 -050097PenaltyIndentedWhitespace: 0
Patrick Williamsc742fe82022-09-29 20:21:39 -050098QualifierAlignment: Left
99ReferenceAlignment: Left
Patrick Venture0dcc4302018-09-24 10:39:54 -0700100ReflowComments: true
Patrick Williams06136282022-09-29 20:24:29 -0500101RequiresClausePosition: OwnLine
Patrick Venture0dcc4302018-09-24 10:39:54 -0700102SortIncludes: true
103SortUsingDeclarations: true
104SpaceAfterCStyleCast: false
Zane Shelley9a71ea12019-10-29 11:16:13 -0500105SpaceAfterTemplateKeyword: true
Patrick Venture0dcc4302018-09-24 10:39:54 -0700106SpaceBeforeAssignmentOperators: true
Zane Shelley9a71ea12019-10-29 11:16:13 -0500107SpaceBeforeCpp11BracedList: false
108SpaceBeforeCtorInitializerColon: true
109SpaceBeforeInheritanceColon: true
Patrick Venture0dcc4302018-09-24 10:39:54 -0700110SpaceBeforeParens: ControlStatements
Zane Shelley9a71ea12019-10-29 11:16:13 -0500111SpaceBeforeRangeBasedForLoopColon: true
Patrick Venture0dcc4302018-09-24 10:39:54 -0700112SpaceInEmptyParentheses: false
113SpacesBeforeTrailingComments: 1
114SpacesInAngles: false
115SpacesInContainerLiterals: true
116SpacesInCStyleCastParentheses: false
117SpacesInParentheses: false
118SpacesInSquareBrackets: false
Patrick Williams36d6f562020-05-28 17:53:49 -0500119Standard: Latest
Patrick Venture0dcc4302018-09-24 10:39:54 -0700120TabWidth: 4
Patrick Williams2f52b0a2021-11-10 15:59:37 -0600121UseCRLF: false
Patrick Venture0dcc4302018-09-24 10:39:54 -0700122UseTab: Never
123...
124