-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prospector
83 lines (68 loc) · 1002 Bytes
/
.prospector
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
83
output-format: json
strictness: high
test-warnings: true
doc-warnings: true
member-warnings: true
inherits:
- default
ignore-paths:
- docs
autodetect: true
max-line-length: 79
bandit:
run: true
options:
config: .bandit.yml
dodgy:
run: true
frosted:
disable:
- E103
- E306
mccabe:
run: false
options:
max-complexity: 10
pep8:
disable:
- W602
- W603
enable:
- W601
options:
max-line-length: 79
pep257:
disable:
- D100
- D101
pyflakes:
disable:
- F403
- F810
pylint:
disable:
- bad-builtin
- R0903
- import-error
options:
max-locals: 15
max-returns: 6
max-branches: 15
max-statements: 60
max-parents: 7
max-attributes: 7
min-public-methods: 1
max-public-methods: 20
max-module-lines: 1000
max-line-length: 79
pyroma:
disable:
- PYR15
- PYR18
mypy:
run: true
options:
ignore-missing-imports: true
follow-imports: skip
vulture:
run: true