-
Notifications
You must be signed in to change notification settings - Fork 4
/
.clang-format
28 lines (28 loc) · 1.07 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
---
BasedOnStyle: Webkit
---
Language: Cpp
PointerAlignment: Right
BreakBeforeBraces: Allman
AllowShortBlocksOnASingleLine: false
AllowShortFunctionsOnASingleLine: Empty
Cpp11BracedListStyle: true
Standard: Cpp11
ColumnLimit: 120
IndentWidth: 2
AccessModifierOffset: -2
FixNamespaceComments: true
NamespaceIndentation: None
IncludeBlocks: Regroup
IndentCaseLabels: true
MaxEmptyLinesToKeep: 1
UseTab: Never
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: true
AlignOperands: true
AlignTrailingComments: true
AllowShortCaseLabelsOnASingleLine: false
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
CommentPragmas: '^ NOLINT'
---