forked from albin-johansson/centurion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
53 lines (41 loc) · 1.13 KB
/
.clang-format
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
BasedOnStyle: Google
Language: Cpp
Standard: c++20
ColumnLimit: 95
IndentWidth: 2
DerivePointerAlignment: false
PointerAlignment: Left
IndentRequires: true
NamespaceIndentation: None
FixNamespaceComments: true
EmptyLineBeforeAccessModifier: Always
AllowAllArgumentsOnNextLine: false
AllowAllParametersOfDeclarationOnNextLine: false
AllowAllConstructorInitializersOnNextLine: false
BinPackParameters: false
BinPackArguments: false
AllowShortFunctionsOnASingleLine: All
AllowShortIfStatementsOnASingleLine: Never
AllowShortBlocksOnASingleLine: Empty
AllowShortLambdasOnASingleLine: All
AllowShortEnumsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
BreakBeforeBinaryOperators: None
BreakBeforeTernaryOperators: true
BreakBeforeConceptDeclarations: true
BreakBeforeBraces: Custom
BraceWrapping:
AfterClass: true
AfterStruct: true
AfterUnion: false
AfterEnum: true
AfterFunction: true
AfterExternBlock: true
AfterCaseLabel: false
BeforeElse: true
BeforeCatch: true
SplitEmptyNamespace: false
SplitEmptyRecord: false
SplitEmptyFunction: false
BreakInheritanceList: BeforeComma
BreakConstructorInitializers: BeforeComma