forked from citation-file-format/cffconvert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prospector.yml
36 lines (28 loc) · 852 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
# prospector configuration file
---
output-format: grouped
strictness: veryhigh
doc-warnings: false
test-warnings: true
member-warnings: false
ignore-paths:
- docs
- cffconvert/gcloud/gcloud.py
pyroma:
run: true
pycodestyle:
full: true
disable:
- E501 # test line length with pylint instead, as that can be disabled per file and/or per line if needed
pylint:
full: true
options:
max-line-length: 120
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