-
Notifications
You must be signed in to change notification settings - Fork 1
/
.arclint
63 lines (63 loc) · 1.67 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
{
"linters": {
"chmod": {
"type": "chmod"
},
"shell": {
"type": "shellcheck",
"shellcheck.exclude": [
"SC3028"
],
"include": [
"(\\.sh$)"
]
},
"filename": {
"type": "filename"
},
"json": {
"type": "json",
"include": [
"(^\\.arcconfig$)",
"(^\\.arclint$)",
"(\\.json$)"
]
},
"python": {
"type": "flake8",
"severity": {
"E203": "disabled",
"E731": "disabled",
"F821": "advice"
},
"flake8.builtins": [
"KAFKA_CLUSTERS",
"SENTRY_FEATURES",
"SENTRY_OPTIONS",
"__context__",
"__executors__",
"__ext_pillar__",
"__grains__",
"__opts__",
"__pillar__",
"__proxy__",
"__ret__",
"__runner__",
"__runners__",
"__salt__",
"__sdb__",
"__serializers__",
"__states__",
"__thorium__",
"__utils__"
],
"include": [
"(\\.py$)",
"(^roles/saas-rabbitmq/server/content.sls$)",
"(^roles/viperserv/eggdrop/cron.sls$)",
"(^roles/webserver-legacy/php-builder/source.sls$)",
"(^roles/webserver-legacy/php-sites/cleanup.sls$)"
]
}
}
}