-
Notifications
You must be signed in to change notification settings - Fork 3
/
.clang-format
32 lines (31 loc) · 872 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
---
AccessModifierOffset: -4
AlignTrailingComments: true
AllowShortFunctionsOnASingleLine: false
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AlwaysBreakTemplateDeclarations: true
BinPackParameters: false
BreakBeforeBraces: Custom
BraceWrapping:
AfterClass: false
AfterControlStatement: false
AfterEnum: false
AfterFunction: true
AfterNamespace: true
AfterObjCDeclaration: true
AfterStruct: false
AfterUnion: false
BeforeCatch: false
BeforeElse: false
IndentBraces: false
ColumnLimit: 0
IndentCaseLabels: true
MaxEmptyLinesToKeep: 3
DerivePointerAlignment: false
PointerAlignment: Left
Standard: Auto
TabWidth: 4
UseTab: Never
IndentWidth: 4
...