-
Notifications
You must be signed in to change notification settings - Fork 1
/
prospector.yaml
54 lines (45 loc) · 1.22 KB
/
prospector.yaml
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
54
strictness: high
inherits:
- strictness_high
doc-warnings: true
member-warnings: true
test-warnings: true
autodetect: false
output-format: grouped
ignore-paths:
- doc/source/conf.py
- build/
- dist/
- logs/
profile-validator:
disable:
- deprecated-tool-code
pep8:
full: true
options:
max-line-length: 120
pep257:
explain: true
source: true
disable:
- D203 # 1 blank line required before class docstring, D211 (after) is enforce instead
- D213 # Multi-line docstring summary should start at the second line, D212 (first line) is enforced instead
- D406 # Section name should end with a newline, incompatible with Google Style Python Docstrings
- D407 # Missing dashed underline after section, incompatible with Google Style Python Docstrings
pylint:
disable:
- pointless-string-statement # used as documentation for class attributes
options:
ignore: vulture_whitelist.py
max-line-length: 120
max-args: 6
max-attributes: 14
max-locals: 16
include-naming-hint: true
variable-rgx: (([a-z][a-z0-9_]{0,30})|(_[a-z0-9_]*))$
variable-name-hint: (([a-z][a-z0-9_]{0,30})|(_[a-z0-9_]*))$
extension-pkg-whitelist: lxml
pyroma:
run: true
vulture:
run: true