-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.prospector.yaml
65 lines (51 loc) · 912 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
output-format: grouped
strictness: veryhigh
doc-warnings: true
test-warnings: true
member-warnings: true
max-line-length: 120
ignore-paths:
- setup.py
- scripts/
- scripts\
- lns/yolo/_lib/
- lns\yolo\_lib\
- lns/squeezedet/_lib/
- lns\squeezedet\_lib\
- lns/common/preprocessing/lyft_dataset_sdk/
- lns\common\preprocessing\lyft_dataset_sdk\
- lns/common/preprocessing/nuscenes/
- lns\common\preprocessing\nuscenes\
- lns/common/preprocessing/JAAD/
- lns\common\preprocessing\JAAD\
ignore-patterns:
- ^\..*.py$
dodgy:
run: true
frosted:
run: false
mccabe:
run: false
mypy:
run: true
pep257:
run: true
disable:
- D203
- D213
pep8:
run: true
full: true
options:
max-line-length: 120
pyflakes:
run: true
pylint:
run: true
options:
max-line-length: 120
disable: import-outside-toplevel
pyroma:
run: false
vulture:
run: false