forked from trillek-team/tec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
35 lines (34 loc) · 903 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
---
AccessModifierOffset: '-4'
AlignAfterOpenBracket: AlwaysBreak
AlignConsecutiveAssignments: 'false'
AlignConsecutiveDeclarations: 'false'
AlignEscapedNewlines: DontAlign
AlignTrailingComments: 'false'
AllowShortCaseLabelsOnASingleLine: 'true'
BinPackArguments: 'false'
BinPackParameters: 'false'
BraceWrapping:
AfterCaseLabel: 'true'
BeforeElse: 'true'
BeforeCatch: 'true'
BreakBeforeBinaryOperators: NonAssignment
BreakBeforeBraces: Custom
BreakBeforeTernaryOperators: 'true'
BreakConstructorInitializers: AfterColon
BreakInheritanceList: AfterColon
ColumnLimit: '120'
CompactNamespaces: 'false'
ConstructorInitializerIndentWidth: 8
ContinuationIndentWidth: 8
FixNamespaceComments: 'true'
IndentWidth: '4'
Language: Cpp
MaxEmptyLinesToKeep: 1
NamespaceIndentation: None
PointerAlignment: Left
ReflowComments: 'false'
Standard: Cpp11
TabWidth: '4'
UseTab: ForContinuationAndIndentation
...