-
Notifications
You must be signed in to change notification settings - Fork 2
/
.prospector.yaml
78 lines (70 loc) · 1.07 KB
/
.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
70
71
72
73
74
75
76
77
78
strictness: veryhigh
doc-warnings: true
member-warnings: false
test-warnings: false
ignore-patterns:
- (^|/)\..+
- .*\.html
- docs/.*
- tmp.py
pylint:
disable:
- bad-continuation
- broad-except
- import-error
- import-self
- logging-format-interpolation
- missing-docstring
- no-self-use
- unused-argument
- wrong-import-order
options:
max-args: 10
max-locals: 100
max-returns: 6
max-branches: 50
max-statements: 180
max-parents: 10
max-attributes: 10
min-public-methods: 0
max-public-methods: 20
max-module-lines: 2000
max-line-length: 100
mccabe:
options:
max-complexity: 30
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
- D101
- D102
- D103
- D104
- D105
- D107
- D200
- D203
- D205
- D212
- D204
- D300
- D400
- D401
- D404
- D403