-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
36 lines (36 loc) · 1.01 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
BasedOnStyle: LLVM
IndentWidth: 4
DeriveLineEnding: false
UseCRLF: false
UseTab: Never
IndentCaseLabels: false
AllowShortIfStatementsOnASingleLine: false
AllowShortFunctionsOnASingleLine: false
AllowShortBlocksOnASingleLine: false
AllowShortEnumsOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: true
AllowAllArgumentsOnNextLine: true
AllowAllParametersOfDeclarationOnNextLine: true
AlignTrailingComments: true
AlignEscapedNewlines: true
AlignConsecutiveDeclarations: false
AlignOperands: true
AlwaysBreakTemplateDeclarations: Yes
#LambdaBodyIndentation: Signature
NamespaceIndentation: None
#PackConstructorInitializers: CurrentLine
ColumnLimit: 100
#RemoveBracesLLVM: false
ReflowComments: false
BreakBeforeBraces: Custom
BraceWrapping:
AfterEnum: false
AfterClass: false
AfterStruct: false
AfterCaseLabel: false
SplitEmptyFunction: false
DerivePointerAlignment: false
PointerAlignment: Right
#ReferenceAlignment: Pointer
#QualifierAlignment: Leave
#QualifierOrder: ['static', 'inline', 'type', 'const', 'volatile']