-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.prospector.yaml
94 lines (81 loc) · 1.24 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
output-format: grouped
strictness: veryhigh
doc-warnings: true
test-warnings: true
member-warnings: true
ignore-patterns:
- ^\.tox/.*
- ^\.venv/.*
- ^\.git/.*
- ^build/.*
- ^dist/.*
pylint:
disable:
- bad-continuation
- missing-docstring
- wrong-import-position
- wrong-import-order
- broad-exception-caught
- astroid-error
- invalid-name
- unused-variable
- ungrouped-imports
enable:
- useless-suppression
options:
max-line-length: 300
max-args: 5
max-locals: 16
max-returns: 6
max-branches: 12
max-statements: 50
max-parents: 7
max-attributes: 7
min-public-methods: 1
max-public-methods: 20
mccabe:
options:
max-complexity: 10
pycodestyle:
disable:
- E226
- E302
- E41
- E501
- E305
- E231
- W293
options:
max-line-length: 300
pydocstyle:
disable:
- D203
- D212
- D213
- D404
- D406
- D407
- D408
- D409
- D413
pyflakes:
disable:
- F401
- F403
dodgy:
run: true
vulture:
run: false
frosted:
run: true
mypy:
run: false
options:
ignore-missing-imports: true
follow-imports: skip
bandit:
run: false
options:
exclude: tests
pyroma:
run: true