@@ -5,7 +5,7 @@ AccessModifierOffset: -4
5
5
AlignAfterOpenBracket : DontAlign
6
6
AlignConsecutiveAssignments : false
7
7
AlignConsecutiveDeclarations : false
8
- AlignEscapedNewlinesLeft : true
8
+ AlignEscapedNewlines : Left
9
9
AlignOperands : true
10
10
AlignTrailingComments : true
11
11
AllowAllParametersOfDeclarationOnNextLine : false
@@ -14,13 +14,12 @@ AllowShortCaseLabelsOnASingleLine: false
14
14
AllowShortFunctionsOnASingleLine : Inline
15
15
AllowShortIfStatementsOnASingleLine : false
16
16
AllowShortLoopsOnASingleLine : false
17
+ AlwaysBreakAfterDefinitionReturnType : None
17
18
AlwaysBreakAfterReturnType : None
18
19
AlwaysBreakBeforeMultilineStrings : true
19
20
AlwaysBreakTemplateDeclarations : true
20
21
BinPackArguments : true
21
22
BinPackParameters : true
22
- BreakBeforeBinaryOperators : None
23
- BreakBeforeBraces : Custom
24
23
BraceWrapping :
25
24
AfterClass : true
26
25
AfterControlStatement : true
@@ -34,18 +33,31 @@ BraceWrapping:
34
33
BeforeElse : true
35
34
IndentBraces : false
36
35
SplitEmptyFunction : false
36
+ SplitEmptyRecord : true
37
+ SplitEmptyNamespace : true
38
+ BreakBeforeBinaryOperators : None
39
+ BreakBeforeBraces : Custom
40
+ BreakBeforeInheritanceComma : false
37
41
BreakBeforeTernaryOperators : false
42
+ BreakConstructorInitializersBeforeComma : false
38
43
BreakConstructorInitializers : BeforeColon
44
+ BreakAfterJavaFieldAnnotations : false
45
+ BreakStringLiterals : true
39
46
ColumnLimit : 100
40
47
CommentPragmas : ' ^ IWYU pragma:'
48
+ CompactNamespaces : false
41
49
ConstructorInitializerAllOnOneLineOrOnePerLine : true
42
50
ConstructorInitializerIndentWidth : 2
43
51
ContinuationIndentWidth : 4
44
52
Cpp11BracedListStyle : true
45
53
DerivePointerAlignment : false
46
54
DisableFormat : false
47
55
ExperimentalAutoDetectBinPacking : false
48
- ForEachMacros : [ foreach, Q_FOREACH, BOOST_FOREACH ]
56
+ FixNamespaceComments : true
57
+ ForEachMacros :
58
+ - foreach
59
+ - Q_FOREACH
60
+ - BOOST_FOREACH
49
61
IncludeCategories :
50
62
- Regex : ' ^".*'
51
63
Priority : 1
@@ -57,9 +69,12 @@ IncludeCategories:
57
69
Priority : 99
58
70
- Regex : ' .*'
59
71
Priority : 4
72
+ IncludeIsMainRegex : ' (Test)?$'
60
73
IndentCaseLabels : false
61
74
IndentWidth : 4
62
75
IndentWrappedFunctionNames : false
76
+ JavaScriptQuotes : Leave
77
+ JavaScriptWrapImports : true
63
78
KeepEmptyLinesAtTheStartOfBlocks : false
64
79
MacroBlockBegin : ' '
65
80
MacroBlockEnd : ' '
@@ -78,7 +93,9 @@ PenaltyReturnTypeOnItsOwnLine: 200
78
93
PointerAlignment : Left
79
94
ReflowComments : true
80
95
SortIncludes : true
96
+ SortUsingDeclarations : true
81
97
SpaceAfterCStyleCast : false
98
+ SpaceAfterTemplateKeyword : true
82
99
SpaceBeforeAssignmentOperators : true
83
100
SpaceBeforeParens : ControlStatements
84
101
SpaceInEmptyParentheses : false
@@ -92,3 +109,4 @@ Standard: Auto
92
109
TabWidth : 4
93
110
UseTab : Never
94
111
...
112
+
0 commit comments