-
Notifications
You must be signed in to change notification settings - Fork 6
/
.clang-format
47 lines (46 loc) · 1.28 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
---
BasedOnStyle: Google
AccessModifierOffset: -4
AlignAfterOpenBracket: BlockIndent
# IndentAccessModifiers: 'true'
# AlignConsecutiveAssignments: 'true'
AlignConsecutiveDeclarations:
Enabled: false
AlignConsecutiveMacros:
Enabled: true
AcrossEmptyLines: true
AcrossComments: false
AlignOperands: 'true'
AllowAllParametersOfDeclarationOnNextLine: 'false'
AllowShortCaseLabelsOnASingleLine: 'false'
AllowShortFunctionsOnASingleLine: None
AllowShortLoopsOnASingleLine: 'false'
AllowShortIfStatementsOnASingleLine: AllIfsAndElse
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: 'false'
BinPackArguments: 'false'
# BinPackParameters: 'false'
ColumnLimit: '120'
IndentCaseLabels: 'true'
IndentPPDirectives: AfterHash
IndentWidth: '4'
MaxEmptyLinesToKeep: '1'
PointerAlignment: Left
SortIncludes: 'false'
SpaceBeforeAssignmentOperators: 'true'
SpaceBeforeParens: ControlStatements
SpaceInEmptyParentheses: 'false'
SpacesBeforeTrailingComments: 1
AlignTrailingComments: 'false'
TabWidth: '4'
UseTab: Never
ShortNamespaceLines: 0
BreakArrays: 'true'
ContinuationIndentWidth: 4
ReflowComments: false
DerivePointerAlignment: false
# AllowShortBlocksOnASingleLine: Never
# InsertTrailingCommas: Wrapped
BreakConstructorInitializers: AfterColon
...