-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
39 lines (39 loc) · 972 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
35
36
37
38
39
---
IndentWidth: 2
ColumnLimit: 140
AllowShortFunctionsOnASingleLine: Empty
AllowShortIfStatementsOnASingleLine: Never
AllowShortLambdasOnASingleLine: Inline
AlwaysBreakAfterReturnType: None
BinPackArguments: false
BreakBeforeBraces: Allman
BraceWrapping:
AfterEnum: true
AfterStruct: true
SplitEmptyFunction: false
BeforeCatch: true
BeforeElse: true
BeforeLambdaBody: true
BeforeWhile: true
AfterClass: true
AfterControlStatement: Always
AfterFunction: true
AfterNamespace: true
AfterObjCDeclaration: true
AfterUnion: true
AfterCaseLabel: true
AfterExternBlock: true
SplitEmptyNamespace: false
SplitEmptyRecord: false
AlignAfterOpenBracket: AlwaysBreak
BracedInitializerIndentWidth: 2
BreakConstructorInitializers: BeforeComma
BreakStringLiterals: true
IncludeBlocks: Regroup
PointerAlignment: Left
SortIncludes: CaseInsensitive
IncludeCategories:
- Regex: '^<(dungeondraft|datatypes).*'
Priority: 1
- Regex: '.*'
Priority: 2