-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prospector.yaml
76 lines (62 loc) · 969 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
70
71
72
73
74
75
76
output-format: text
strictness: high
test-warnings: true
doc-warnings: true
ignore-paths:
- docs
ignore-patterns:
- ez_setup.py
# - (^|/)skip(this)?(/|$)
pep8:
full: true
disable:
- W602
- W603
- D200
- D205
- D213
- D415
- E402
- E722
enable:
- W601
options:
max-line-length: 120
pep257:
disable:
- D213
- D203
- D204
- D402
pylint:
enable:
- method-hidden
- access-member-before-definition
disable:
- bare-except
- consider-merging-isinstance
- import-outside-toplevel
- invalid-name
- no-self-use
- too-many-locals
- too-many-instance-attributes
- unnecessary-pass
- use-symbolic-message-instead
- useless-object-inheritance
- wrong-import-position
pyflakes:
run: true
dodgy:
run: false
pyroma:
run: true
profile-validator:
run: true
mccabe:
run: false
bandit:
run: false
mypy:
run: false
vulture:
run: false