-
Notifications
You must be signed in to change notification settings - Fork 15
/
.clang-format
45 lines (42 loc) · 1.1 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
# .clang-format example configuration
IndentWidth: 4
UseTab: Never
AlignAfterOpenBracket: true
AlignTrailingComments:
Kind: Always
AlwaysBreakTemplateDeclarations: Yes
RequiresClausePosition: WithPreceding
ColumnLimit: 140
NamespaceIndentation: All
AllowShortBlocksOnASingleLine: Always
AllowShortFunctionsOnASingleLine: All
AllowShortLambdasOnASingleLine: All
AllowShortCaseLabelsOnASingleLine: true
AllowShortEnumsOnASingleLine: true
AllowShortLoopsOnASingleLine: true
AllowShortIfStatementsOnASingleLine: false
AlignArrayOfStructures: Left
PointerAlignment: Left
IncludeBlocks: Preserve
SpacesBeforeTrailingComments: 1
BreakBeforeBraces: Custom
BraceWrapping:
AfterClass: true
AfterControlStatement: Always
AfterEnum: true
AfterFunction: true
AfterNamespace: true
AfterStruct: true
AfterUnion: true
AfterExternBlock: true
BeforeCatch: true
BeforeElse: true
BeforeLambdaBody: true
IndentBraces: false
SplitEmptyFunction: true
SplitEmptyRecord: true
SplitEmptyNamespace: true
BeforeWhile: true
AllowAllArgumentsOnNextLine: false
BinPackArguments: false
LambdaBodyIndentation: Signature