-
Notifications
You must be signed in to change notification settings - Fork 2
/
.clang-format
29 lines (29 loc) · 881 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
AlignAfterOpenBracket: DontAlign
AlignConsecutiveMacros: 'true'
AlignConsecutiveAssignments: 'true'
AlignConsecutiveDeclarations: 'false'
AlignEscapedNewlines: Left
AlignOperands: 'true'
AlignTrailingComments: 'true'
AllowAllArgumentsOnNextLine: 'true'
AllowAllConstructorInitializersOnNextLine: 'true'
AllowAllParametersOfDeclarationOnNextLine: 'true'
AllowShortBlocksOnASingleLine: 'false'
AllowShortCaseLabelsOnASingleLine: 'false'
AllowShortIfStatementsOnASingleLine: Never
AllowShortLambdasOnASingleLine: None
AllowShortLoopsOnASingleLine: 'false'
AllowShortFunctionsOnASingleLine: 'false'
ColumnLimit: '180'
CompactNamespaces: 'true'
ContinuationIndentWidth: '4'
FixNamespaceComments: 'true'
IndentWidth: '4'
Language: Cpp
NamespaceIndentation: All
SortIncludes: 'true'
ShortNamespaceLines: 0
SpaceAfterCStyleCast: 'true'
TabWidth: '4'
UseTab: Never
PointerAlignment: 'Left'