-
Notifications
You must be signed in to change notification settings - Fork 20
/
.prospector.yaml
69 lines (61 loc) · 976 Bytes
/
.prospector.yaml
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
strictness: veryhigh
doc-warnings: true
member-warnings: false
test-warnings: false
ignore-patterns:
- (^|/)\..+
pylint:
disable:
- anomalous-backslash-in-string
- import-error
- broad-except
- protected-access
- unsupported-membership-test
- wrong-import-order
options:
max-args: 14
max-locals: 100
max-returns: 10
max-branches: 30
max-statements: 180
max-parents: 10
max-attributes: 12
min-public-methods: 0
max-public-methods: 20
max-module-lines: 2000
max-line-length: 100
mccabe:
options:
max-complexity: 22
pep8:
disable:
- N802
- N807
- W503
options:
max-line-length: 100
single-line-if-stmt: n
vulture:
run: false
pyroma:
run: false
disable:
- PYR19
- PYR16
pep257:
disable:
- D000
- D100
- D104
- D107
- D200
- D202
- D203
- D205
- D212
- D204
- D300
- D400
- D401
- D404
- D403