-
Notifications
You must be signed in to change notification settings - Fork 9
/
codacy.yml
66 lines (59 loc) · 792 Bytes
/
codacy.yml
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
---
engines:
eslint:
enabled: true
gosec:
enabled: true
shellcheck:
enabled: true
bandit:
enabled: true
ignore_paths:
- "doc/*"
- "bin/*"
- ".github/*"
- "data/*"
- "tests/*"
- "**/*_test.go"
tools:
eslint:
config:
extends: eslint:recommended
env:
node: true
es6: true
parserOptions:
ecmaVersion: 2020
gosec:
enabled: true
rules:
- G101
- G102
- G103
- G104
- G106
- G107
- G201
- G202
- G203
- G204
- G301
- G302
- G303
- G304
- G305
- G401
- G402
- G403
- G404
- G501
- G502
- G503
- G601
shellcheck:
severity: error
exclude:
- SC1091
bandit:
confidence: high
severity: medium