-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prospector.yml
78 lines (65 loc) · 935 Bytes
/
.prospector.yml
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
# output-format: json
strictness: high
test-warnings: true
doc-warnings: false
member-warnings: false
inherits:
- default
ignore-paths:
- docs
ignore-patterns:
- (^|/)skip(this)?(/|$)
- tests/test_commands.py
- tests/test_mediator.py
- tests/test_notification.py
- tests/test_phi.py
autodetect: false
max-line-length: 120
pyflakes:
run: true
disable:
- F403
- F810
pyroma:
run: true
disable:
- PYR15
- PYR18
dodgy:
run: true
mccabe:
run: true
options:
max-complexity: 12
pylint:
run: false
bandit:
run: false
options:
config: bandit.yml
frosted:
run: false
disable:
- E103
- E306
pep8:
run: false
disable:
- W602
- W603
enable:
- W601
options:
max-line-length: 79
pep257:
run: false
disable:
- D100
- D101
mypy:
run: false
options:
ignore-missing-imports: true
follow-imports: skip
vulture:
run: false