-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
40 lines (33 loc) · 910 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
39
40
---
Language: Cpp
NamespaceIndentation: All
CompactNamespaces: false
AccessModifierOffset: -4
SpaceBeforeCaseColon: false
SpaceBeforeCtorInitializerColon: true
SpaceBeforeInheritanceColon: true
SpaceBeforeRangeBasedForLoopColon: true
SpaceBeforeAssignmentOperators: true
SpaceBeforeCpp11BracedList: false
SpaceBeforeParens: Never
AlwaysBreakAfterReturnType: None
BreakBeforeBraces: Allman
IndentCaseLabels: true
AllowShortLoopsOnASingleLine: false
AllowShortLambdasOnASingleLine: None
AllowAllConstructorInitializersOnNextLine: true
BreakConstructorInitializers: BeforeComma
ConstructorInitializerIndentWidth: 0
BreakInheritanceList: BeforeComma
BreakBeforeInheritanceComma: true
EmptyLineBeforeAccessModifier: Always
AllowShortEnumsOnASingleLine: false
PointerAlignment: Left
ColumnLimit: 0
BitFieldColonSpacing: Both
Standard: Latest
TabWidth: 8
IndentWidth: 4
UseCRLF: false
UseTab: Never
...