-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.clang-format
32 lines (32 loc) · 921 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
BasedOnStyle: Google
ColumnLimit: 120
IndentWidth: 4
TabWidth: 4
UseTab: Always
ReflowComments: false
AccessModifierOffset: -4
IncludeBlocks: Preserve
BreakBeforeBraces: Allman
BreakBeforeTernaryOperators: true
BreakBeforeBinaryOperators: NonAssignment
SpaceInEmptyBlock: true
SpacesBeforeTrailingComments: 1
SpaceAfterTemplateKeyword: true
IndentAccessModifiers: false
IndentRequiresClause: false
IndentCaseLabels: false
IndentPPDirectives: BeforeHash
InsertNewlineAtEOF: true
BinPackArguments: true
BinPackParameters: true
PackConstructorInitializers: BinPack
NamespaceIndentation: All
Cpp11BracedListStyle: false
FixNamespaceComments: false
AlignAfterOpenBracket: DontAlign
AlignOperands: false
AllowShortLoopsOnASingleLine: false
AllowShortBlocksOnASingleLine: Empty
AllowShortFunctionsOnASingleLine: Empty
AllowShortIfStatementsOnASingleLine: Never
AllowAllArgumentsOnNextLine: false