-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
48 lines (48 loc) · 1.53 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
{
"AlignAfterOpenBracket": "Align",
"AlignConsecutiveAssignments": true,
"AlignConsecutiveDeclarations": true,
"AlignConsecutiveMacros": true,
"AlignEscapedNewlines": true,
"AlignOperands": "AlignAfterOperator",
"AllowShortBlocksOnASingleLine": true,
"AllowShortIfStatementsOnASingleLine": true,
"AllowShortLoopsOnASingleLine": true,
"BreakBeforeBraces": "Attach",
"BreakBeforeTernaryOperators": true,
"BreakConstructorInitializers": "BeforeComma",
"BreakInheritanceList": "BeforeComma",
"BreakStringLiterals": false,
"ColumnLimit": 0,
"Cpp11BracedListStyle": false,
"FixNamespaceComments": true,
"IncludeBlocks": "Regroup",
"IndentCaseLabels": true,
"IndentPPDirectives": "AfterHash",
"IndentWidth": 4,
"MaxEmptyLinesToKeep": 2,
"NamespaceIndentation": "All",
"PointerAlignment": "Left",
"SortIncludes": true,
"SortUsingDeclarations": true,
"SpaceAfterCStyleCast": true,
"SpaceAfterLogicalNot": false,
"SpaceAfterTemplateKeyword": false,
"SpaceBeforeAssignmentOperators": true,
"SpaceBeforeCpp11BracedList": false,
"SpaceBeforeCtorInitializerColon": true,
"SpaceBeforeInheritanceColon": true,
"SpaceBeforeRangeBasedForLoopColon": true,
"SpaceBeforeSquareBrackets": false,
"SpaceInEmptyBlock": false,
"SpaceInEmptyParentheses": false,
"SpacesBeforeTrailingComments": 4,
"SpacesInAngles": false,
"SpacesInCStyleCastParentheses": false,
"SpacesInConditionalStatement": false,
"SpacesInContainerLiterals": false,
"SpacesInParentheses": false,
"SpacesInSquareBrackets": false,
"TabWidth": 4,
"UseTab": "ForIndentation"
}