-
Notifications
You must be signed in to change notification settings - Fork 39
/
.clang-format
40 lines (32 loc) · 983 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
35
36
37
38
39
40
Language: Cpp
IndentWidth: 4
UseTab: Never
AccessModifierOffset: -4
AlignAfterOpenBracket: AlwaysBreak
AlignTrailingComments: false
AlignOperands: false
AlwaysBreakTemplateDeclarations: true
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortBlocksOnASingleLine: false
AllowShortFunctionsOnASingleLine: Empty
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
BinPackArguments: false
BinPackParameters: true
BreakBeforeBraces: Allman
BreakConstructorInitializersBeforeComma: true
ColumnLimit: 0
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth: 4
ContinuationIndentWidth: 4
Cpp11BracedListStyle: false
IndentCaseLabels: false
IndentPPDirectives: BeforeHash
MaxEmptyLinesToKeep: 1
NamespaceIndentation: Inner
FixNamespaceComments: true
DerivePointerAlignment: false
PointerAlignment: Middle
SortIncludes: true
SpaceBeforeParens: ControlStatements
Standard: Cpp11