-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
56 lines (48 loc) · 1.39 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
51
52
53
54
55
56
BasedOnStyle: Google
ColumnLimit: 100
IndentWidth: 2
ContinuationIndentWidth: 4
AccessModifierOffset: -2
Cpp11BracedListStyle: true
DeriveLineEnding: false
FixNamespaceComments: true
AlignTrailingComments: true
IncludeBlocks: Merge
IncludeCategories:
- Regex: '^"'
SortPriority: 1
- Regex: '^<.*\.'
SortPriority: 2
- Regex: '^<[^.]>'
SortPriority: 3
DerivePointerAlignment: false
PointerAlignment: Left
AllowShortBlocksOnASingleLine: false
AllowShortFunctionsOnASingleLine: Empty
AllowShortCaseLabelsOnASingleLine: false
AllowShortEnumsOnASingleLine: true
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AllowShortLambdasOnASingleLine: true
IndentCaseBlocks: true
IndentCaseLabels: false
IndentWrappedFunctionNames: false
ConstructorInitializerIndentWidth: 0
ConstructorInitializerAllOnOneLineOrOnePerLine: true
AllowAllConstructorInitializersOnNextLine: true
BreakConstructorInitializers: BeforeComma
BreakInheritanceList: BeforeComma
BinPackArguments: true
BinPackParameters: true
AlignOperands: DontAlign
AlignAfterOpenBracket: true
AllowAllArgumentsOnNextLine: true
AllowAllParametersOfDeclarationOnNextLine: true
PenaltyBreakAssignment: 1
PenaltyBreakBeforeFirstCallParameter: 1
PenaltyBreakComment: 100
PenaltyBreakFirstLessLess: 10
PenaltyBreakString: 100
PenaltyBreakTemplateDeclaration: 1
PenaltyExcessCharacter: 10000
PenaltyReturnTypeOnItsOwnLine: 10