-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
37 lines (37 loc) · 1.05 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
---
AlignConsecutiveAssignments: "true"
AlignOperands: "true"
AlignTrailingComments: "true"
AllowAllConstructorInitializersOnNextLine: "true"
BreakBeforeTernaryOperators: "true"
BreakConstructorInitializers: BeforeComma
ColumnLimit: "100"
CompactNamespaces: "false"
Cpp11BracedListStyle: "true"
IndentCaseLabels: "true"
IndentWidth: "4"
KeepEmptyLinesAtTheStartOfBlocks: "true"
Language: Cpp
NamespaceIndentation: All
PointerAlignment: Left
ReflowComments: "false"
SortIncludes: "true"
SortUsingDeclarations: "true"
SpaceAfterLogicalNot: "true"
SpaceAfterTemplateKeyword: "true"
SpaceBeforeAssignmentOperators: "true"
SpaceBeforeCpp11BracedList: "true"
SpaceBeforeCtorInitializerColon: "true"
SpaceBeforeInheritanceColon: "true"
SpaceBeforeParens: ControlStatements
SpaceBeforeRangeBasedForLoopColon: "true"
SpaceInEmptyParentheses: "false"
SpacesBeforeTrailingComments: "1"
SpacesInAngles: "false"
SpacesInCStyleCastParentheses: "true"
SpacesInContainerLiterals: "true"
SpacesInParentheses: "false"
SpacesInSquareBrackets: "false"
Standard: Cpp11
TabWidth: "4"
UseTab: Always