@@ -10,12 +10,7 @@ SpaceBeforeCpp11BracedList: false
1010# Cases inside switches are indented one level
1111IndentCaseLabels : true
1212
13- # BinPackArguments: true
14- # BinPackParameters: true
1513AlignAfterOpenBracket : AlwaysBreak
16- # AlignOperands: true
17- # BreakBeforeTernaryOperators: true
18- # BreakBeforeBinaryOperators: None
1914
2015AllowShortBlocksOnASingleLine : false
2116AllowShortCaseLabelsOnASingleLine : false
@@ -25,29 +20,33 @@ AllowShortIfStatementsOnASingleLine: false
2520AllowShortLambdasOnASingleLine : false
2621AllowShortLoopsOnASingleLine : false
2722
28- # AlignEscapedNewlines: Left
23+ # Otherwise it would align escaped newlines to the column limit
24+ AlignEscapedNewlines : Left
25+
2926AlignTrailingComments : true
3027SortIncludes : true
3128
3229BreakBeforeBraces : Custom
3330BraceWrapping :
34- AfterControlStatement : Never
35- AfterFunction : false
36- AfterNamespace : false
37- AfterStruct : false
38- AfterUnion : false
39- AfterExternBlock : false
40- BeforeElse : true
31+ AfterControlStatement : Never
32+ AfterFunction : false
33+ AfterNamespace : false
34+ AfterStruct : false
35+ AfterUnion : false
36+ AfterExternBlock : false
37+ BeforeElse : true
4138
4239# Adds a comment at the end of the namespace with its name
4340FixNamespaceComments : true
4441# Indent namespace's content
4542NamespaceIndentation : All
4643
47- # PPIndentWidth: 4
44+ # Aligns preprocessor directives
4845IndentPPDirectives : AfterHash
4946
47+ # No space between template and <
5048SpaceAfterTemplateKeyword : false
49+ # Newline after template
5150AlwaysBreakTemplateDeclarations : Yes
5251
5352LambdaBodyIndentation : Signature
0 commit comments