-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-format
34 lines (33 loc) · 875 Bytes
/
.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
BasedOnStyle: Google
IndentWidth: 4
ColumnLimit: 120
Language: Cpp
DerivePointerAlignment: false
PointerAlignment: Left
AccessModifierOffset: -4
AllowShortBlocksOnASingleLine: false
AllowShortFunctionsOnASingleLine: false
AllowShortEnumsOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: false
BreakBeforeBraces: Custom
BraceWrapping:
AfterClass: true
AfterStruct: true
AfterCaseLabel: false
AfterControlStatement: Never
AfterEnum: true
AfterFunction: true
AfterNamespace: false
AfterUnion: true
AfterExternBlock: false
BeforeCatch: false
IndentBraces: false
SplitEmptyFunction: true
SplitEmptyNamespace: true
BreakConstructorInitializers: BeforeComma
PackConstructorInitializers: Never
AllowShortLambdasOnASingleLine: Inline
BinPackParameters: false
BinPackArguments: false
AllowAllParametersOfDeclarationOnNextLine: true
SortIncludes: false