-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
33 lines (33 loc) · 959 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
---
AccessModifierOffset: "-4"
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: "true"
AlignConsecutiveDeclarations: "true"
AlignEscapedNewlines: Left
AlignTrailingComments: "true"
AllowAllParametersOfDeclarationOnNextLine: "false"
AllowShortBlocksOnASingleLine: "true"
AllowShortCaseLabelsOnASingleLine: "true"
AllowShortFunctionsOnASingleLine: All
AllowShortIfStatementsOnASingleLine: "false"
AllowShortLoopsOnASingleLine: "false"
BreakBeforeBraces: Allman
BreakConstructorInitializers: BeforeComma
ColumnLimit: "256"
CompactNamespaces: "false"
ConstructorInitializerAllOnOneLineOrOnePerLine: "false"
ConstructorInitializerIndentWidth: "4"
FixNamespaceComments: "true"
IndentCaseLabels: "true"
IndentWidth: "4"
IndentPPDirectives: AfterHash
Language: Cpp
MaxEmptyLinesToKeep: "1"
NamespaceIndentation: All
PointerAlignment: Left
ReflowComments: "true"
SortIncludes: "false"
SortUsingDeclarations: "false"
Standard: Auto
TabWidth: "4"
UseTab: Never