-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
39 lines (39 loc) · 1.16 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
Language: Cpp
BasedOnStyle: LLVM
IndentWidth: 4
IndentExternBlock: Indent
ColumnLimit: 100
NamespaceIndentation: All
PointerAlignment: Left
ReferenceAlignment: Left
PackConstructorInitializers: Never
AlignConsecutiveDeclarations: AcrossComments
AlignConsecutiveAssignments: AcrossComments
AlignConsecutiveBitFields: AcrossComments
AlignTrailingComments: true
AllowShortBlocksOnASingleLine: Empty
AllowShortCaseLabelsOnASingleLine: false
AllowShortFunctionsOnASingleLine: Empty
AllowShortIfStatementsOnASingleLine: Never
AlwaysBreakTemplateDeclarations: Yes
IndentPPDirectives: BeforeHash
PPIndentWidth: 4
AlignAfterOpenBracket: BlockIndent
AllowAllArgumentsOnNextLine: true
AllowAllParametersOfDeclarationOnNextLine: true
BinPackParameters: false
BinPackArguments: false
EmptyLineAfterAccessModifier: Never
EmptyLineBeforeAccessModifier: Always
AlignEscapedNewlines: Left
AlignOperands: AlignAfterOperator
AllowShortEnumsOnASingleLine: false
AllowShortLambdasOnASingleLine: Empty
BreakBeforeBraces: Attach
BreakConstructorInitializers: AfterColon
BreakStringLiterals: true
MaxEmptyLinesToKeep: 1
QualifierAlignment: Left
SeparateDefinitionBlocks: Always
UseTab: Never
IndentCaseLabels: true