-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.prospector.yml
More file actions
53 lines (43 loc) · 1.13 KB
/
.prospector.yml
File metadata and controls
53 lines (43 loc) · 1.13 KB
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
# prospector configuration file
---
output-format: grouped
strictness: veryhigh
doc-warnings: true
test-warnings: true
member-warnings: false
max-line-length: 120
ignore-paths:
- docs
- ectopylasm/__init__.py
- ectopylasm/__version__.py
mccabe:
run: true
pyroma:
run: true
pylint:
run: true
disable:
- line-too-long # PEP8 checks this
- no-else-return # not my taste
options:
good-names: x,y,z,a,b,c,d,f
pyflakes:
run: true
pep8:
full: true
disable: [
E501, # line too long (> 79 characters)
W503, # line break before binary operator; deprecated in favor of W504
]
options:
max-line-length: 120
pep257:
run: true
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
]