-
Notifications
You must be signed in to change notification settings - Fork 948
/
.arclint
71 lines (71 loc) · 1.57 KB
/
.arclint
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
{
"linters": {
"clang-format": {
"type": "clang-format",
"include": "(\\.(m|h|mm)$)",
"exclude": "(/Pods/)"
},
"text": {
"type": "text",
"include": "(\\.(m|h|mm|md|swift)$)",
"exclude": [
"(/Pods/)"
],
"severity": {
"3": "disabled",
"5": "disabled"
}
},
"line-length": {
"type": "regex-line-length",
"include": "(\\.(m|h|mm|md|swift)$)",
"exclude": [
"(/Pods/)",
"(CHANGELOG.md)",
"(\\.playground/.+\\.swift)"
],
"max-line-length": 100,
"ignore-line-regexes": [
"(https?://)",
"(<a href)",
"(\\[.+\\]\\(.+\\))",
"( *func )",
"(^[-+@].+)",
"(NS_UNAVAILABLE;$)",
"(autoresizingMask)",
"(^ )",
"(^#define)",
"(^excerpt:)",
"(GENERATED)"
]
},
"chmod": {
"type": "chmod",
"exclude": "(/Pods/)"
},
"prose": {
"type": "prose",
"include": "(\\.(md)$)",
"exclude": [
"(/Pods/)",
"(^CHANGELOG.md)",
"(writing_readmes.md$)"
],
"severity": {
"typography.symbols.curly_quotes": "disabled",
"typography.symbols.ellipsis": "disabled",
"leonard.exclamation.30ppm": "disabled",
"misc.annotations": "warning"
}
},
"spelling": {
"type": "spelling",
"include": "(\\.(m|h|mm|md)$)",
"exclude": "(/Pods/)"
},
"jazzy": {
"type": "jazzy",
"include": "(components/.*?/src/[^\/]+?\\.(h|swift)$)"
}
}
}