1+ Language : Cpp
12BasedOnStyle : LLVM
23IndentWidth : 4
3- ColumnLimit : 120
4+ TabWidth : 4
5+ NamespaceIndentation : None
6+ ColumnLimit : 120
7+ ReflowComments : true
8+ UseTab : Never
9+
10+ AlignConsecutiveAssignments : false
11+ AlignConsecutiveDeclarations : false
12+ AlignEscapedNewlines : true
13+ AlignOperands : true
14+ AlignTrailingComments : true
15+
16+ AllowAllArgumentsOnNextLine : false
17+ AllowAllConstructorInitializersOnNextLine : true
18+ AllowAllParametersOfDeclarationOnNextLine : true
19+ AllowShortBlocksOnASingleLine : Always
20+ AllowShortIfStatementsOnASingleLine : Always
21+ AllowShortCaseLabelsOnASingleLine : true
22+ AllowShortFunctionsOnASingleLine : true
23+ AllowShortLambdasOnASingleLine : true
24+ AllowShortLoopsOnASingleLine : true
25+ AlwaysBreakTemplateDeclarations : Yes
26+ AlwaysBreakAfterReturnType : None
27+ PenaltyReturnTypeOnItsOwnLine : 200
28+
29+ BreakBeforeBraces : Custom
30+ BraceWrapping :
31+ AfterCaseLabel : false
32+ AfterClass : false
33+ AfterControlStatement : false
34+ AfterEnum : false
35+ AfterExternBlock : false
36+ AfterFunction : false
37+ AfterStruct : false
38+ AfterNamespace : false
39+ AfterUnion : false
40+ BeforeCatch : true
41+ BeforeElse : true
42+ SplitEmptyFunction : false
43+ SplitEmptyRecord : false
44+ SplitEmptyNamespace : false
45+ IndentBraces : false
46+
47+ SortIncludes : true
48+ SortUsingDeclarations : true
49+
50+ SpaceAfterCStyleCast : false
51+ SpaceAfterLogicalNot : false
52+ SpaceAfterTemplateKeyword : true
53+ SpaceBeforeAssignmentOperators : true
54+ SpaceBeforeCpp11BracedList : true
55+ SpaceBeforeCtorInitializerColon : true
56+ SpaceBeforeInheritanceColon : true
57+ SpaceBeforeParens : ControlStatements
58+ SpaceBeforeRangeBasedForLoopColon : true
59+ SpaceInEmptyParentheses : false
60+ SpacesBeforeTrailingComments : 1
61+ SpacesInAngles : false
62+ SpacesInCStyleCastParentheses : false
63+ SpacesInContainerLiterals : false
64+ SpacesInParentheses : false
65+ SpacesInSquareBrackets : false
66+
67+ BinPackArguments : true
68+ BinPackParameters : true
69+ PenaltyBreakBeforeFirstCallParameter : 1
0 commit comments