forked from hhenson/hgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clang-format
More file actions
51 lines (44 loc) · 1.1 KB
/
.clang-format
File metadata and controls
51 lines (44 loc) · 1.1 KB
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
---
IndentWidth: 4
---
Language: Cpp
Standard: c++20
AlignConsecutiveAssignments: true
AlignConsecutiveDeclarations: true
AlignEscapedNewlines: Right
AlignTrailingComments: true
AllowShortBlocksOnASingleLine: Always
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: All
AllowShortIfStatementsOnASingleLine: Always
AllowShortLoopsOnASingleLine: true
AllowShortLambdasOnASingleLine: All
BreakBeforeBraces: Custom
BraceWrapping:
AfterCaseLabel: false
AfterControlStatement: false
AfterClass: true
AfterFunction: false
AfterNamespace: true
AfterStruct: true
BeforeCatch: false
BeforeElse: false
SplitEmptyFunction: false
SplitEmptyNamespace: false
SplitEmptyRecord: false
IndentBraces: false
BreakBeforeBinaryOperators: None
ColumnLimit: 132
IndentCaseBlocks: true
IndentCaseLabels: true
IndentExternBlock: Indent
IndentPPDirectives: BeforeHash
NamespaceIndentation: All
SpaceBeforeAssignmentOperators: true
SpacesBeforeTrailingComments: 2
SpaceBeforeCpp11BracedList: false
UseCRLF: false
IndentWidth: 4
ReflowComments: true
ContinuationIndentWidth: 4
Cpp11BracedListStyle: true