blob: d43e884dbbb3dae7d4099cba649bb733da65c09c [file] [log] [blame]
Thang Q. Nguyen4300d212023-05-15 12:22:53 +07001---
Patrick Williams8b050c92023-10-20 11:19:32 -05002Language: Cpp
3# BasedOnStyle: LLVM
4AccessModifierOffset: -2
Thang Q. Nguyen4300d212023-05-15 12:22:53 +07005AlignAfterOpenBracket: Align
Thang Q. Nguyen4300d212023-05-15 12:22:53 +07006AlignConsecutiveAssignments: false
7AlignConsecutiveDeclarations: false
Patrick Williams8b050c92023-10-20 11:19:32 -05008AlignEscapedNewlines: Right
9AlignOperands: Align
10AlignTrailingComments:
11 Kind: Always
12 OverEmptyLines: 1
13AllowAllParametersOfDeclarationOnNextLine: true
14AllowShortBlocksOnASingleLine: Empty
Thang Q. Nguyen4300d212023-05-15 12:22:53 +070015AllowShortCaseLabelsOnASingleLine: false
Patrick Williams8b050c92023-10-20 11:19:32 -050016AllowShortFunctionsOnASingleLine: Empty
17AllowShortIfStatementsOnASingleLine: Never
18AllowShortLambdasOnASingleLine: true
Thang Q. Nguyen4300d212023-05-15 12:22:53 +070019AllowShortLoopsOnASingleLine: false
Thang Q. Nguyen4300d212023-05-15 12:22:53 +070020AlwaysBreakAfterReturnType: None
21AlwaysBreakBeforeMultilineStrings: false
Patrick Williams8b050c92023-10-20 11:19:32 -050022AlwaysBreakTemplateDeclarations: Yes
Thang Q. Nguyen4300d212023-05-15 12:22:53 +070023BinPackArguments: true
24BinPackParameters: true
Patrick Williams8b050c92023-10-20 11:19:32 -050025BitFieldColonSpacing: None
Thang Q. Nguyen4300d212023-05-15 12:22:53 +070026BraceWrapping:
Patrick Williams8b050c92023-10-20 11:19:32 -050027 AfterCaseLabel: true
28 AfterClass: true
29 AfterControlStatement: true
30 AfterEnum: true
31 AfterExternBlock: true
32 AfterFunction: true
33 AfterNamespace: true
34 AfterObjCDeclaration: true
35 AfterStruct: true
36 AfterUnion: true
37 BeforeCatch: true
38 BeforeElse: true
39 BeforeLambdaBody: false
40 BeforeWhile: false
41 IndentBraces: false
42 SplitEmptyFunction: false
43 SplitEmptyRecord: false
44 SplitEmptyNamespace: false
45BreakAfterAttributes: Never
Thang Q. Nguyen4300d212023-05-15 12:22:53 +070046BreakBeforeBinaryOperators: None
47BreakBeforeBraces: Custom
Patrick Williams8b050c92023-10-20 11:19:32 -050048BreakBeforeTernaryOperators: true
49BreakConstructorInitializers: AfterColon
50BreakInheritanceList: AfterColon
Thang Q. Nguyen4300d212023-05-15 12:22:53 +070051BreakStringLiterals: false
Patrick Williams8b050c92023-10-20 11:19:32 -050052ColumnLimit: 80
53CommentPragmas: '^ IWYU pragma:'
54CompactNamespaces: false
55ConstructorInitializerIndentWidth: 4
56ContinuationIndentWidth: 4
57Cpp11BracedListStyle: true
Thang Q. Nguyen4300d212023-05-15 12:22:53 +070058DerivePointerAlignment: false
Patrick Williams8b050c92023-10-20 11:19:32 -050059DisableFormat: false
60FixNamespaceComments: true
61ForEachMacros:
62 - foreach
63 - Q_FOREACH
64 - BOOST_FOREACH
65IncludeBlocks: Regroup
Thang Q. Nguyen4300d212023-05-15 12:22:53 +070066IncludeCategories:
Patrick Williams8b050c92023-10-20 11:19:32 -050067 - 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
83IndentCaseLabels: true
84IndentExternBlock: NoIndent
85IndentRequiresClause: true
86IndentWidth: 4
87IndentWrappedFunctionNames: true
88InsertNewlineAtEOF: true
Thang Q. Nguyen4300d212023-05-15 12:22:53 +070089KeepEmptyLinesAtTheStartOfBlocks: false
Patrick Williams8b050c92023-10-20 11:19:32 -050090LambdaBodyIndentation: OuterScope
91LineEnding: LF
Thang Q. Nguyen4300d212023-05-15 12:22:53 +070092MacroBlockBegin: ''
Patrick Williams8b050c92023-10-20 11:19:32 -050093MacroBlockEnd: ''
Thang Q. Nguyen4300d212023-05-15 12:22:53 +070094MaxEmptyLinesToKeep: 1
Patrick Williams8b050c92023-10-20 11:19:32 -050095NamespaceIndentation: None
96ObjCBlockIndentWidth: 2
97ObjCSpaceAfterProperty: false
Thang Q. Nguyen4300d212023-05-15 12:22:53 +070098ObjCSpaceBeforeProtocolList: true
Patrick Williams8b050c92023-10-20 11:19:32 -050099PackConstructorInitializers: BinPack
100PenaltyBreakAssignment: 25
101PenaltyBreakBeforeFirstCallParameter: 19
102PenaltyBreakComment: 300
103PenaltyBreakFirstLessLess: 120
104PenaltyBreakString: 1000
105PenaltyExcessCharacter: 1000000
Thang Q. Nguyen4300d212023-05-15 12:22:53 +0700106PenaltyReturnTypeOnItsOwnLine: 60
Patrick Williams8b050c92023-10-20 11:19:32 -0500107PenaltyIndentedWhitespace: 0
108PointerAlignment: Left
109QualifierAlignment: Left
110ReferenceAlignment: Left
111ReflowComments: true
112RequiresClausePosition: OwnLine
113RequiresExpressionIndentation: Keyword
114SortIncludes: CaseSensitive
115SortUsingDeclarations: true
Thang Q. Nguyen4300d212023-05-15 12:22:53 +0700116SpaceAfterCStyleCast: false
117SpaceAfterTemplateKeyword: true
118SpaceBeforeAssignmentOperators: true
Patrick Williams8b050c92023-10-20 11:19:32 -0500119SpaceBeforeCpp11BracedList: false
120SpaceBeforeCtorInitializerColon: true
121SpaceBeforeInheritanceColon: true
Thang Q. Nguyen4300d212023-05-15 12:22:53 +0700122SpaceBeforeParens: ControlStatements
Patrick Williams8b050c92023-10-20 11:19:32 -0500123SpaceBeforeRangeBasedForLoopColon: true
Thang Q. Nguyen4300d212023-05-15 12:22:53 +0700124SpaceInEmptyParentheses: false
125SpacesBeforeTrailingComments: 1
Patrick Williams8b050c92023-10-20 11:19:32 -0500126SpacesInAngles: Never
127SpacesInContainerLiterals: true
Thang Q. Nguyen4300d212023-05-15 12:22:53 +0700128SpacesInCStyleCastParentheses: false
129SpacesInParentheses: false
130SpacesInSquareBrackets: false
Patrick Williams8b050c92023-10-20 11:19:32 -0500131Standard: Latest
132TabWidth: 4
133UseTab: Never
Thang Q. Nguyen4300d212023-05-15 12:22:53 +0700134...
Patrick Williams8b050c92023-10-20 11:19:32 -0500135