-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.prospector.yml
42 lines (33 loc) · 1.05 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
# prospector configuration file
---
output-format: grouped
strictness: medium
doc-warnings: true
test-warnings: true
member-warnings: false
ignore-paths:
- docs
- build
pyroma:
run: true
pycodestyle:
full: true
pylint:
disable: [
C0114, # we don't check for module docstrings, because we have many separate files for single classes
]
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
# The following list excludes things that are irrelevant to the Google style
D203, D204, D213, D215, D400, D401, D404, D406, D407, D408, D409, D413,
]
pyflakes:
disable: [
F401, # unused import: already checked by pylint
]