-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
42 lines (41 loc) · 1.15 KB
/
.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
39
40
41
42
---
BasedOnStyle: Microsoft
AlignAfterOpenBracket: Align
AlignEscapedNewlines: Left
AlignConsecutiveMacros: 'true'
AlignEscapedNewlines: 'true'
AlignConsecutiveAssignments: 'true'
AlignOperands: 'true'
AlignTrailingComments: 'true'
AllowAllArgumentsOnNextLine: 'false'
AllowAllConstructorInitializersOnNextLine: 'false'
AllowAllParametersOfDeclarationOnNextLine: 'false'
AllowShortCaseLabelsOnASingleLine: 'false'
AllowShortLambdasOnASingleLine: 'false'
AllowShortFunctionsOnASingleLine: 'false'
BreakBeforeBinaryOperators: 'false'
BreakBeforeTernaryOperators: 'true'
IncludeBlocks: Regroup
Language: Cpp
NamespaceIndentation: All
PointerAlignment: Left
SpaceBeforeAssignmentOperators: 'true'
SpaceBeforeCpp11BracedList: 'true'
ColumnLimit: 175
UseTab: ForIndentation
Standard: Auto
BinPackArguments: 'false'
BinPackParameters: 'true'
BraceWrapping:
AfterClass: true
AfterControlStatement: false
AfterEnum: true
AfterFunction: true
AfterNamespace: true
AfterObjCDeclaration: true
AfterStruct: true
AfterUnion: true
BeforeCatch: true
BeforeElse: true
BreakBeforeBraces: Custom
...