-
Notifications
You must be signed in to change notification settings - Fork 47
/
.clang-format
82 lines (82 loc) · 1.92 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
BasedOnStyle: Google
IndentWidth: 2
Language: Cpp
DerivePointerAlignment: false
PointerAlignment: Left
AccessModifierOffset: -2
ConstructorInitializerAllOnOneLineOrOnePerLine: true
AlignTrailingComments: false
KeepEmptyLinesAtTheStartOfBlocks: true
AllowShortCaseLabelsOnASingleLine: true
AlwaysBreakTemplateDeclarations: true
SpacesBeforeTrailingComments: 2
IncludeBlocks: Preserve
BinPackParameters: false
IncludeCategories:
- Regex: '^<.*\.h>'
Priority: 1
- Regex: '^<c.*'
Priority: 2
- Regex: '^"boost.*'
Priority: 3
- Regex: '^"nigiri/core/common.*'
Priority: 4
- Regex: '^"nigiri/core/schedule.*'
Priority: 5
- Regex: '^"nigiri/core/.*'
Priority: 6
- Regex: '^"nigiri/module/.*'
Priority: 7
- Regex: '^"nigiri/bootstrap/.*'
Priority: 8
- Regex: '^"nigiri/loader/.*'
Priority: 9
- Regex: '^"nigiri/.*'
Priority: 10
- Regex: '^"nigiri/protocol.*'
Priority: 11
- Regex: '^<.*'
Priority: 12
- Regex: '.*'
Priority: 13
---
BasedOnStyle: Google
IndentWidth: 2
Language: ObjC
DerivePointerAlignment: false
PointerAlignment: Left
AccessModifierOffset: -2
ConstructorInitializerAllOnOneLineOrOnePerLine: true
AlignTrailingComments: false
KeepEmptyLinesAtTheStartOfBlocks: true
AllowShortCaseLabelsOnASingleLine: true
AlwaysBreakTemplateDeclarations: true
SpacesBeforeTrailingComments: 2
ColumnLimit: 80
IncludeCategories:
- Regex: '^<.*\.h>'
Priority: 1
- Regex: '^<c.*'
Priority: 2
- Regex: '^"boost.*'
Priority: 3
- Regex: '^"nigiri/core/common.*'
Priority: 4
- Regex: '^"nigiri/core/schedule.*'
Priority: 5
- Regex: '^"nigiri/core/.*'
Priority: 6
- Regex: '^"nigiri/module/.*'
Priority: 7
- Regex: '^"nigiri/bootstrap/.*'
Priority: 8
- Regex: '^"nigiri/loader/.*'
Priority: 9
- Regex: '^"nigiri/.*'
Priority: 10
- Regex: '^"nigiri/protocol.*'
Priority: 11
- Regex: '^<.*'
Priority: 12
- Regex: '.*'
Priority: 13