-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-format
48 lines (48 loc) · 1.25 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
43
44
45
46
47
48
# Generated from CLion C/C++ Code Style settings
BasedOnStyle: Microsoft
AccessModifierOffset: -4
TabWidth: 4
UseTab: Never
PointerAlignment: Left
AllowShortLambdasOnASingleLine: Empty
AllowShortFunctionsOnASingleLine: Inline
AllowShortIfStatementsOnASingleLine: Never
SpaceBeforeCpp11BracedList: true
SpaceBeforeParens: NonEmptyParentheses
Cpp11BracedListStyle: false
BreakBeforeBraces: Custom
BraceWrapping:
AfterClass: true
AfterControlStatement: Always
AfterEnum: true
AfterFunction: true
AfterNamespace: true
AfterObjCDeclaration: true
AfterStruct: true
AfterUnion: true
BeforeCatch: true
BeforeElse: true
BeforeLambdaBody: false
IndentBraces: false
AfterCaseLabel: true
BreakConstructorInitializers: AfterColon
BreakInheritanceList: AfterColon
BreakStringLiterals: true
ConstructorInitializerAllOnOneLineOrOnePerLine: true
AllowAllArgumentsOnNextLine: false
AllowAllConstructorInitializersOnNextLine: false
AllowAllParametersOfDeclarationOnNextLine: false
AlignAfterOpenBracket: AlwaysBreak
BinPackArguments: false
BinPackParameters: false
FixNamespaceComments: true
ColumnLimit: 120
AlignConsecutiveAssignments: None
AlignConsecutiveDeclarations: None
---
Language: Proto
UseTab: Never
TabWidth: 4
IndentWidth: 4
ContinuationIndentWidth: 4
...