forked from noobaa/noobaa-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
38 lines (33 loc) · 992 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
34
35
36
37
38
BasedOnStyle: LLVM
UseTab: Never
TabWidth: 4
IndentWidth: 4
ContinuationIndentWidth: 4
ColumnLimit: 0
SortIncludes: true
SortUsingDeclarations: true
BinPackArguments: false
BinPackParameters: false
AccessModifierOffset: -4
ConstructorInitializerAllOnOneLineOrOnePerLine: true
FixNamespaceComments: true
NamespaceIndentation: Inner
PointerAlignment: Left
Cpp11BracedListStyle: false
# IndentPPDirectives: AfterHash
AlignOperands: false
AlignTrailingComments: false
AlignAfterOpenBracket: AlwaysBreak
AlignEscapedNewlinesLeft: true
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlwaysBreakAfterReturnType: TopLevelDefinitions
AlwaysBreakTemplateDeclarations: true
AlwaysBreakBeforeMultilineStrings: false
AllowShortLoopsOnASingleLine: true
AllowShortBlocksOnASingleLine: true
AllowShortFunctionsOnASingleLine: true
AllowShortCaseLabelsOnASingleLine: true
AllowShortIfStatementsOnASingleLine: true
BreakBeforeBraces: Linux
BreakConstructorInitializers: BeforeComma