@@ -4,41 +4,42 @@ Standard: c++14
4
4
5
5
# Note that we cannot use IncludeIsMainRegex functionality, because it
6
6
# does not support includes in angle brackets (<>)
7
- SortIncludes : True
7
+ SortIncludes : true
8
8
IncludeBlocks : Regroup
9
9
IncludeCategories :
10
- - Regex : ' <catch2/.*\.hpp>'
10
+ - Regex : <catch2/.*\.hpp>
11
11
Priority : 1
12
- - Regex : ' <.*/.*\.hpp>'
12
+ - Regex : <.*/.*\.hpp>
13
13
Priority : 2
14
- - Regex : ' <.*>'
14
+ - Regex : <.*>
15
15
Priority : 3
16
16
17
-
18
17
AllowShortBlocksOnASingleLine : Always
19
18
AllowShortEnumsOnASingleLine : false
20
19
AllowShortFunctionsOnASingleLine : All
21
20
AllowShortIfStatementsOnASingleLine : WithoutElse
22
21
AllowShortLambdasOnASingleLine : Inline
23
22
24
- AccessModifierOffset : ' -4 '
23
+ AccessModifierOffset : " -4 "
25
24
AlignEscapedNewlines : Left
26
- AllowAllConstructorInitializersOnNextLine : ' true'
27
- BinPackArguments : ' false'
28
- BinPackParameters : ' false'
25
+ AllowAllConstructorInitializersOnNextLine : " true"
26
+ BinPackArguments : " false"
27
+ BinPackParameters : " false"
29
28
BreakConstructorInitializers : AfterColon
30
- ConstructorInitializerAllOnOneLineOrOnePerLine : ' true'
31
- DerivePointerAlignment : ' false'
32
- FixNamespaceComments : ' true'
33
- IndentCaseLabels : ' false'
29
+ ConstructorInitializerAllOnOneLineOrOnePerLine : " true"
30
+ DerivePointerAlignment : " false"
31
+ FixNamespaceComments : " true"
32
+ IndentCaseLabels : " false"
34
33
IndentPPDirectives : AfterHash
35
- IndentWidth : ' 4 '
34
+ IndentWidth : " 4 "
36
35
NamespaceIndentation : All
37
36
PointerAlignment : Left
38
- SpaceBeforeCtorInitializerColon : ' false'
39
- SpaceInEmptyParentheses : ' false'
40
- SpacesInParentheses : ' true'
41
- TabWidth : ' 4 '
37
+ SpaceBeforeCtorInitializerColon : " false"
38
+ SpaceInEmptyParentheses : " false"
39
+ SpacesInParentheses : " true"
40
+ TabWidth : " 4 "
42
41
UseTab : Never
43
-
44
- ...
42
+ AlwaysBreakTemplateDeclarations : Yes
43
+ SpaceAfterTemplateKeyword : true
44
+ SortUsingDeclarations : true
45
+ ReflowComments : true
0 commit comments