-
Notifications
You must be signed in to change notification settings - Fork 87
/
prospector.yaml
65 lines (57 loc) · 1.33 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
55
56
57
58
59
60
61
62
63
64
65
strictness: high
test-warnings: false
doc-warnings: true
member-warnings: true
ignore-paths:
- .eggs
- .tox
- benchmark
- build
- docs
- examples
- readme
- tests
- my_tests
- venv
ignore-patterns:
- setup.py
- _version.py
# pylint configuration
pylint:
disable:
- invalid-name
- missing-module-docstring
- too-many-lines
- ungrouped-imports
options:
max-line-length: 120
# pyflakes configuration
pyflakes:
disable:
- F401 # imported but not used
# mypy configuration
mypy:
run: true
options:
ignore-missing-imports: true
follow-imports: skip
# pyroma configuration
pyroma:
run: true
# pydocstyle (old pep257) configuration
pydocstyle:
disable:
- D104 # Missing docstring in public package
- D202 # No blank lines allowed after function docstring
- D203 # 1 blank line required before class docstring
- D205 # 1 blank line required between summary line and description
- D212 # Multi-line docstring summary should start at the first line
- D406 # Section name should end with a newline
- D407 # Missing dashed underline after section
- D413 # Missing blank line after last section
# pycodestyle (old pep8) configuration
pycodestyle:
disable:
- N802 # function name should be lowercase
options:
max-line-length: 120