-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
34 lines (34 loc) · 916 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
31
32
33
34
---
AccessModifierOffset: -2
AlignAfterOpenBracket: AlwaysBreak
AllowShortFunctionsOnASingleLine: InlineOnly
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
AlwaysBreakTemplateDeclarations: Yes
AllowAllArgumentsOnNextLine: true
BinPackArguments: false
BinPackParameters: false
BreakBeforeBraces: Custom
BraceWrapping:
SplitEmptyFunction: true
SplitEmptyRecord: true
ColumnLimit: 80
IndentWidth: 2
ContinuationIndentWidth: 2
ConstructorInitializerIndentWidth: 2
IndentPPDirectives: None
PenaltyReturnTypeOnItsOwnLine: 1000000
PenaltyExcessCharacter: 1000000
PointerAlignment: Left
SpaceAfterTemplateKeyword: false
TabWidth: 2
Cpp11BracedListStyle: true
IndentCaseLabels: true
SortIncludes: true
IncludeBlocks: Preserve
FixNamespaceComments: true
NamespaceIndentation: All
AlignOperands: AlignAfterOperator
AlignTrailingComments: false
BreakBeforeBinaryOperators: NonAssignment
...