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