-
Notifications
You must be signed in to change notification settings - Fork 7
/
.clang-format
31 lines (31 loc) · 1.38 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
---
Language : Cpp
BasedOnStyle : Google
AlignConsecutiveDeclarations : true
AlignConsecutiveAssignments : true
AlignEscapedNewlines : Left
AlignOperands : true
AlignTrailingComments : true
AlignEscapedNewlinesLeft : true
AccessModifierOffset : -4
ConstructorInitializerAllOnOneLineOrOnePerLine: true
BinPackArguments : false
BinPackParameters : false
ExperimentalAutoDetectBinPacking : false
AllowAllParametersOfDeclarationOnNextLine: false
ColumnLimit : 90
CompactNamespaces : true
Cpp11BracedListStyle : true
DerivePointerAlignment : true
IndentWidth : 4
SpacesBeforeTrailingComments : 1
SpaceBeforeParens : ControlStatements
SpacesInAngles : true
TabWidth : 4
UseTab : Never
PointerAlignment: Left
IndentCaseLabels: false
SpaceAfterCStyleCast: true
CommentPragmas: '^ NO-FORMAT:'
NamespaceIndentation: Inner
...