blob: d92a3f10a47b602bb47e3844ce15ebcf7fb92bbb [file] [log] [blame]
Patrick Venture4d5a5dc2018-11-14 08:51:13 -08001---
2Language: Cpp
3# BasedOnStyle: LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: Align
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
Artem Senicheve8837d52020-06-07 11:59:04 +03008AlignEscapedNewlines: Right
Patrick Williamsb6752722023-05-10 07:50:26 -05009AlignOperands: Align
10AlignTrailingComments:
11 Kind: Always
12 OverEmptyLines: 1
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080013AllowAllParametersOfDeclarationOnNextLine: true
Patrick Williamsb6752722023-05-10 07:50:26 -050014AllowShortBlocksOnASingleLine: Empty
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080015AllowShortCaseLabelsOnASingleLine: false
Patrick Williamsb6752722023-05-10 07:50:26 -050016AllowShortFunctionsOnASingleLine: Empty
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080017AllowShortIfStatementsOnASingleLine: false
18AllowShortLoopsOnASingleLine: false
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080019AlwaysBreakAfterReturnType: None
20AlwaysBreakBeforeMultilineStrings: false
Artem Senicheve8837d52020-06-07 11:59:04 +030021AlwaysBreakTemplateDeclarations: Yes
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080022BinPackArguments: true
23BinPackParameters: true
24BraceWrapping:
Artem Senicheve8837d52020-06-07 11:59:04 +030025 AfterCaseLabel: true
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080026 AfterClass: true
27 AfterControlStatement: true
28 AfterEnum: true
29 AfterFunction: true
30 AfterNamespace: true
31 AfterObjCDeclaration: true
32 AfterStruct: true
33 AfterUnion: true
Artem Senicheve8837d52020-06-07 11:59:04 +030034 AfterExternBlock: true
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080035 BeforeCatch: true
36 BeforeElse: true
37 IndentBraces: false
Artem Senicheve8837d52020-06-07 11:59:04 +030038 SplitEmptyFunction: false
39 SplitEmptyRecord: false
40 SplitEmptyNamespace: false
Patrick Williamsb6752722023-05-10 07:50:26 -050041BreakAfterAttributes: Never
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080042BreakBeforeBinaryOperators: None
43BreakBeforeBraces: Custom
44BreakBeforeTernaryOperators: true
45BreakConstructorInitializers: AfterColon
Artem Senicheve8837d52020-06-07 11:59:04 +030046BreakInheritanceList: AfterColon
Patrick Williamsb6752722023-05-10 07:50:26 -050047BreakStringLiterals: false
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080048ColumnLimit: 80
49CommentPragmas: '^ IWYU pragma:'
Artem Senicheve8837d52020-06-07 11:59:04 +030050CompactNamespaces: false
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080051ConstructorInitializerAllOnOneLineOrOnePerLine: false
52ConstructorInitializerIndentWidth: 4
53ContinuationIndentWidth: 4
54Cpp11BracedListStyle: true
Patrick Williamsb6752722023-05-10 07:50:26 -050055DeriveLineEnding: false
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080056DerivePointerAlignment: false
57PointerAlignment: Left
58DisableFormat: false
59ExperimentalAutoDetectBinPacking: false
60FixNamespaceComments: true
61ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
62IncludeBlocks: Regroup
63IncludeCategories:
64 - Regex: '^[<"](gtest|gmock)'
Artem Senicheve8837d52020-06-07 11:59:04 +030065 Priority: 7
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080066 - Regex: '^"config.h"'
67 Priority: -1
Artem Senicheve8837d52020-06-07 11:59:04 +030068 - Regex: '^".*\.h"'
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080069 Priority: 1
Artem Senicheve8837d52020-06-07 11:59:04 +030070 - Regex: '^".*\.hpp"'
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080071 Priority: 2
Artem Senicheve8837d52020-06-07 11:59:04 +030072 - Regex: '^<.*\.h>'
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080073 Priority: 3
Artem Senicheve8837d52020-06-07 11:59:04 +030074 - Regex: '^<.*\.hpp>'
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080075 Priority: 4
Artem Senicheve8837d52020-06-07 11:59:04 +030076 - Regex: '^<.*'
77 Priority: 5
78 - Regex: '.*'
79 Priority: 6
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080080IndentCaseLabels: true
Patrick Williamsb6752722023-05-10 07:50:26 -050081IndentRequiresClause: true
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080082IndentWidth: 4
83IndentWrappedFunctionNames: true
Patrick Williamsb6752722023-05-10 07:50:26 -050084InsertNewlineAtEOF: true
85KeepEmptyLinesAtTheStartOfBlocks: false
86LambdaBodyIndentation: OuterScope
87LineEnding: LF
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080088MacroBlockBegin: ''
89MacroBlockEnd: ''
90MaxEmptyLinesToKeep: 1
91NamespaceIndentation: None
92ObjCBlockIndentWidth: 2
93ObjCSpaceAfterProperty: false
94ObjCSpaceBeforeProtocolList: true
Patrick Williamsb6752722023-05-10 07:50:26 -050095PenaltyBreakAssignment: 25
Patrick Venture4d5a5dc2018-11-14 08:51:13 -080096PenaltyBreakBeforeFirstCallParameter: 19
97PenaltyBreakComment: 300
98PenaltyBreakFirstLessLess: 120
99PenaltyBreakString: 1000
100PenaltyExcessCharacter: 1000000
101PenaltyReturnTypeOnItsOwnLine: 60
Patrick Williamsb6752722023-05-10 07:50:26 -0500102PenaltyIndentedWhitespace: 0
103QualifierAlignment: Left
104ReferenceAlignment: Left
Patrick Venture4d5a5dc2018-11-14 08:51:13 -0800105ReflowComments: true
Patrick Williamsb6752722023-05-10 07:50:26 -0500106RequiresClausePosition: OwnLine
107RequiresExpressionIndentation: Keyword
Patrick Venture4d5a5dc2018-11-14 08:51:13 -0800108SortIncludes: true
109SortUsingDeclarations: true
110SpaceAfterCStyleCast: false
Artem Senicheve8837d52020-06-07 11:59:04 +0300111SpaceAfterTemplateKeyword: true
Patrick Venture4d5a5dc2018-11-14 08:51:13 -0800112SpaceBeforeAssignmentOperators: true
Artem Senicheve8837d52020-06-07 11:59:04 +0300113SpaceBeforeCpp11BracedList: false
114SpaceBeforeCtorInitializerColon: true
115SpaceBeforeInheritanceColon: true
Patrick Venture4d5a5dc2018-11-14 08:51:13 -0800116SpaceBeforeParens: ControlStatements
Artem Senicheve8837d52020-06-07 11:59:04 +0300117SpaceBeforeRangeBasedForLoopColon: true
Patrick Venture4d5a5dc2018-11-14 08:51:13 -0800118SpaceInEmptyParentheses: false
119SpacesBeforeTrailingComments: 1
120SpacesInAngles: false
121SpacesInContainerLiterals: true
122SpacesInCStyleCastParentheses: false
123SpacesInParentheses: false
124SpacesInSquareBrackets: false
Artem Senicheve8837d52020-06-07 11:59:04 +0300125Standard: Latest
Patrick Venture4d5a5dc2018-11-14 08:51:13 -0800126TabWidth: 4
127UseTab: Never
128...
129