-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
30 lines (30 loc) · 870 Bytes
/
.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
---
UseTab: Never
ContinuationIndentWidth: 4
IndentWidth: 4
TabWidth: 4
SpaceAfterLogicalNot: true
BreakBeforeBraces: Linux
AllowShortIfStatementsOnASingleLine: false
BinPackParameters: false
AlignConsecutiveMacros: AcrossEmptyLinesAndComments
AlwaysBreakAfterDefinitionReturnType: false
AlwaysBreakAfterReturnType: None
PenaltyReturnTypeOnItsOwnLine: 1000000
AllowShortBlocksOnASingleLine: false
AlignTrailingComments: true
BreakBeforeBinaryOperators: false
AllowAllParametersOfDeclarationOnNextLine: false
AllowAllArgumentsOnNextLine: false
AccessModifierOffset: -4
SortIncludes: false
AllowShortCaseLabelsOnASingleLine: false
AllowShortEnumsOnASingleLine: false
AllowShortFunctionsOnASingleLine: false
BinPackArguments: false
ConstructorInitializerIndentWidth: 50
ObjCBlockIndentWidth: 2
ColumnLimit: 100
AlignAfterOpenBracket: AlwaysBreak
IndentCaseLabels: true
...