-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy path.clang-format
More file actions
37 lines (36 loc) · 844 Bytes
/
Copy path.clang-format
File metadata and controls
37 lines (36 loc) · 844 Bytes
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
---
Language: Cpp
ColumnLimit: 0
BreakBeforeBraces: Custom
BraceWrapping:
AfterNamespace: true
AfterClass: true
AfterStruct: true
AfterEnum: true
AfterFunction: true
AfterControlStatement: true
BeforeElse: true
BeforeCatch: true
SplitEmptyFunction: false
SplitEmptyRecord: false
NamespaceIndentation: All
AccessModifierOffset: -4
IndentWidth: 4
TabWidth: 4
UseTab: Never
PointerAlignment: Middle
BreakConstructorInitializers: BeforeComma
BreakBeforeTernaryOperators: true
CompactNamespaces: true
FixNamespaceComments: false
IncludeBlocks: Preserve
IncludeCategories:
- Regex: '^"git2cpp/'
Priority: 2
- Regex: '^<git2'
Priority: 3
- Regex: '^<[[:alnum:].]+>'
Priority: 4
- Regex: '.*'
Priority: 1
...