blob: 625a0a05a2b3adc6d183cca7c18135512d25fe0a [file] [log] [blame]
Gunnar Millsab4cc6a2018-09-14 14:42:39 -05001---
2Language: Cpp
3# BasedOnStyle: LLVM
4AccessModifierOffset: -2
5AlignAfterOpenBracket: Align
6AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
George Liuc6d33972020-06-22 10:35:29 +08008AlignEscapedNewlines: Right
Gunnar Millsab4cc6a2018-09-14 14:42:39 -05009AlignOperands: true
10AlignTrailingComments: true
11AllowAllParametersOfDeclarationOnNextLine: true
12AllowShortBlocksOnASingleLine: false
13AllowShortCaseLabelsOnASingleLine: false
14AllowShortFunctionsOnASingleLine: None
15AllowShortIfStatementsOnASingleLine: false
16AllowShortLoopsOnASingleLine: false
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050017AlwaysBreakAfterReturnType: None
18AlwaysBreakBeforeMultilineStrings: false
George Liuc6d33972020-06-22 10:35:29 +080019AlwaysBreakTemplateDeclarations: Yes
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050020BinPackArguments: true
21BinPackParameters: true
22BraceWrapping:
George Liu3de96982020-05-26 10:42:53 +080023 AfterCaseLabel: true
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050024 AfterClass: true
25 AfterControlStatement: true
26 AfterEnum: true
27 AfterFunction: true
28 AfterNamespace: true
29 AfterObjCDeclaration: true
30 AfterStruct: true
31 AfterUnion: true
George Liuc6d33972020-06-22 10:35:29 +080032 AfterExternBlock: true
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050033 BeforeCatch: true
34 BeforeElse: true
35 IndentBraces: false
George Liuc6d33972020-06-22 10:35:29 +080036 SplitEmptyFunction: false
37 SplitEmptyRecord: false
38 SplitEmptyNamespace: false
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050039BreakBeforeBinaryOperators: None
40BreakBeforeBraces: Custom
41BreakBeforeTernaryOperators: true
42BreakConstructorInitializers: AfterColon
George Liuc6d33972020-06-22 10:35:29 +080043BreakInheritanceList: AfterColon
44BreakStringLiterals: true
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050045ColumnLimit: 80
46CommentPragmas: '^ IWYU pragma:'
George Liuc6d33972020-06-22 10:35:29 +080047CompactNamespaces: false
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050048ConstructorInitializerAllOnOneLineOrOnePerLine: false
49ConstructorInitializerIndentWidth: 4
50ContinuationIndentWidth: 4
51Cpp11BracedListStyle: true
52DerivePointerAlignment: false
George Liuc6d33972020-06-22 10:35:29 +080053PointerAlignment: Left
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050054DisableFormat: false
55ExperimentalAutoDetectBinPacking: false
56FixNamespaceComments: true
57ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
58IncludeBlocks: Regroup
59IncludeCategories:
60 - Regex: '^[<"](gtest|gmock)'
George Liuc6d33972020-06-22 10:35:29 +080061 Priority: 7
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050062 - Regex: '^"config.h"'
63 Priority: -1
George Liuc6d33972020-06-22 10:35:29 +080064 - Regex: '^".*\.h"'
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050065 Priority: 1
George Liuc6d33972020-06-22 10:35:29 +080066 - Regex: '^".*\.hpp"'
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050067 Priority: 2
George Liuc6d33972020-06-22 10:35:29 +080068 - Regex: '^<.*\.h>'
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050069 Priority: 3
George Liuc6d33972020-06-22 10:35:29 +080070 - Regex: '^<.*\.hpp>'
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050071 Priority: 4
George Liuc6d33972020-06-22 10:35:29 +080072 - Regex: '^<.*'
73 Priority: 5
74 - Regex: '.*'
75 Priority: 6
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050076IndentCaseLabels: true
77IndentWidth: 4
78IndentWrappedFunctionNames: true
79KeepEmptyLinesAtTheStartOfBlocks: true
80MacroBlockBegin: ''
81MacroBlockEnd: ''
82MaxEmptyLinesToKeep: 1
83NamespaceIndentation: None
84ObjCBlockIndentWidth: 2
85ObjCSpaceAfterProperty: false
86ObjCSpaceBeforeProtocolList: true
87PenaltyBreakBeforeFirstCallParameter: 19
88PenaltyBreakComment: 300
89PenaltyBreakFirstLessLess: 120
90PenaltyBreakString: 1000
91PenaltyExcessCharacter: 1000000
92PenaltyReturnTypeOnItsOwnLine: 60
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050093ReflowComments: true
94SortIncludes: true
95SortUsingDeclarations: true
96SpaceAfterCStyleCast: false
George Liuc6d33972020-06-22 10:35:29 +080097SpaceAfterTemplateKeyword: true
Gunnar Millsab4cc6a2018-09-14 14:42:39 -050098SpaceBeforeAssignmentOperators: true
George Liuc6d33972020-06-22 10:35:29 +080099SpaceBeforeCpp11BracedList: false
100SpaceBeforeCtorInitializerColon: true
101SpaceBeforeInheritanceColon: true
Gunnar Millsab4cc6a2018-09-14 14:42:39 -0500102SpaceBeforeParens: ControlStatements
George Liuc6d33972020-06-22 10:35:29 +0800103SpaceBeforeRangeBasedForLoopColon: true
Gunnar Millsab4cc6a2018-09-14 14:42:39 -0500104SpaceInEmptyParentheses: false
105SpacesBeforeTrailingComments: 1
106SpacesInAngles: false
107SpacesInContainerLiterals: true
108SpacesInCStyleCastParentheses: false
109SpacesInParentheses: false
110SpacesInSquareBrackets: false
George Liuc6d33972020-06-22 10:35:29 +0800111Standard: Latest
Gunnar Millsab4cc6a2018-09-14 14:42:39 -0500112TabWidth: 4
113UseTab: Never
114...