-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprospector.yml
More file actions
41 lines (37 loc) · 810 Bytes
/
prospector.yml
File metadata and controls
41 lines (37 loc) · 810 Bytes
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
strictness: veryhigh
doc-warnings: true
test-warnings: true
pep8:
full: true
options:
max-line-length: 79
pylint:
options:
dummy-variables-rgx: '_$|__$|dummy'
max-line-length: 79
disable:
# Arguments differ
- W0221
# Variable naming
- C0103
# Too many instance attributes
- R0902
# Too few public methods
- R0903
# Too many arguments
- R0913
mccabe:
options:
# According to McCabe, anything that goes beyond 10 is too complex.
max-complexity: 11
pep257:
run: true
disable:
# Missing docstring in public method
- D102
# Missing docstring in "magic methods" like __str__
- D105
# 1 blank line required before class docstring
- D203
# Multi-line docstring summary should start at the second line
- D213