-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
65 lines (51 loc) · 1.4 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
Language: Cpp
BasedOnStyle: Google
PointerBindsToType: true
AlignConsecutiveAssignments: false
FixNamespaceComments: true
Cpp11BracedListStyle: true
AllowShortFunctionsOnASingleLine: Inline
ColumnLimit: 120
IncludeBlocks: Regroup
IncludeCategories:
- Regex: '^(<|")ovis\/utils'
Priority: 3
- Regex: '^(<|")ovis\/vm'
Priority: 3
SortPriority: 4
- Regex: '^(<|")ovis\/core'
Priority: 3
SortPriority: 5
- Regex: '^(<|")ovis\/graphics'
Priority: 3
SortPriority: 6
- Regex: '^(<|")ovis\/rendering'
Priority: 3
SortPriority: 7
- Regex: '^(<|")ovis\/input'
Priority: 3
SortPriority: 8
- Regex: '^(<|")ovis\/networking'
Priority: 3
SortPriority: 9
- Regex: '^(<|")ovis\/audio'
Priority: 3
SortPriority: 10
- Regex: '^(<|")ovis\/sdl'
Priority: 3
SortPriority: 11
- Regex: '^(<|")ovis\/emscripten'
Priority: 3
SortPriority: 12
- Regex: '^(<|")ovis\/test'
Priority: 3
SortPriority: 13
- Regex: '^(<|")ovis\/editor'
Priority: 3
SortPriority: 14
- Regex: '\.(hpp|hh|h)(>|")$'
Priority: 2
- Regex: '.*'
Priority: 1
...