-
Notifications
You must be signed in to change notification settings - Fork 28
/
.clang-format
50 lines (50 loc) · 1.42 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
BasedOnStyle : "LLVM"
Standard : "c++17"
UseTab : "Always"
TabWidth : 4
IndentWidth : 4
ColumnLimit : 120
AccessModifierOffset : -4
AlignAfterOpenBracket: "Align"
AlignOperands : "AlignAfterOperator"
AllowAllArgumentsOnNextLine : "true"
AllowShortBlocksOnASingleLine : "true"
AllowShortFunctionsOnASingleLine: "All"
AllowShortIfStatementsOnASingleLine : "Never"
AlwaysBreakTemplateDeclarations : "true"
BinPackArguments: false
BinPackParameters: false
BreakBeforeBraces: "Custom"
BraceWrapping:
AfterCaseLabel: false
AfterClass: false
AfterControlStatement: MultiLine
AfterEnum: false
AfterFunction: true
AfterNamespace: true
AfterStruct: false
AfterUnion: false
AfterExternBlock: false
BeforeCatch: false
BeforeElse: false
IndentBraces: false
SplitEmptyFunction: false
SplitEmptyRecord: false
SplitEmptyNamespace: false
BreakBeforeTernaryOperators : false
BreakConstructorInitializers : "BeforeComma"
BreakInheritanceList : "AfterColon"
ConstructorInitializerIndentWidth: 4
ContinuationIndentWidth : 4
IndentCaseLabels : "true"
IndentPPDirectives : "None"
SpaceAfterCStyleCast : "false"
SpaceAfterTemplateKeyword : "false"
SpaceBeforeAssignmentOperators : "true"
SpaceBeforeCtorInitializerColon : "true"
SpaceBeforeInheritanceColon : "true"
SpaceBeforeParens : "ControlStatements"
SpaceBeforeRangeBasedForLoopColon : "true"
SpaceInEmptyParentheses : "false"
SpacesInAngles : "false"
SpacesInCStyleCastParentheses : "false"