-
Notifications
You must be signed in to change notification settings - Fork 68
/
.clang-format
42 lines (38 loc) · 998 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
40
41
42
Language: Cpp
BasedOnStyle: Microsoft
ColumnLimit: 100
IndentWidth: 4
IndentPPDirectives: BeforeHash
PPIndentWidth: 4
ContinuationIndentWidth: 4
ReflowComments: false
PointerAlignment: Right
DerivePointerAlignment: false
BreakBeforeBraces: Custom
BraceWrapping:
AfterClass: false
AfterStruct: false
AfterUnion: false
AfterEnum: false
AfterFunction: true
AfterNamespace: false
AfterExternBlock: false
AfterCaseLabel: false
AfterControlStatement: Never
BeforeElse: false
BeforeCatch: false
BeforeLambdaBody: false
SplitEmptyFunction: false
SplitEmptyRecord: false
SplitEmptyNamespace: false
AlignAfterOpenBracket: DontAlign
# c++ specific
ConstructorInitializerIndentWidth: 4
IndentRequiresClause: true
IndentExternBlock: NoIndent
PackConstructorInitializers: NextLine
AlwaysBreakTemplateDeclarations: Yes
AllowShortFunctionsOnASingleLine: Inline
AllowShortLambdasOnASingleLine: Inline
ShortNamespaceLines: 1
FixNamespaceComments: true