forked from DeepRank/deeprank2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prospector.yml
50 lines (41 loc) · 1.07 KB
/
.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
# prospector configuration file
---
output-format: grouped
strictness: medium
doc-warnings: false
test-warnings: true
member-warnings: false
ignore-paths:
- docs
- reduce
ignore-patterns:
- setup.py
pyroma:
run: true
# pyroma gives errors in the setup.py file,
# thus we disable here these errors.
# This should not be happening, because
# prospector should be ignoring the setup.py
# file (see ignore-patterns above)
disable:
- PYR10
- PYR11
- PYRUNKNOWN
pycodestyle:
full: true
options:
max-line-length: 159
pydocstyle:
disable: [
# Disable because not part of PEP257 official convention:
# see http://pep257.readthedocs.io/en/latest/error_codes.html
D203, # 1 blank line required before class docstring
D212, # Multi-line docstring summary should start at the first line
D213, # Multi-line docstring summary should start at the second line
D404, # First word of the docstring should not be This
]
pylint:
disable: [
logging-fstring-interpolation,
logging-not-lazy,
]