-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathprospector.yaml
51 lines (43 loc) · 832 Bytes
/
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
strictness: high
test-warnings: false
doc-warnings: true
member-warnings: true
ignore-paths:
- .eggs
- .tox
- build
- venv
ignore-patterns:
- setup.py
- _version.py
# pylint configuration
pylint:
disable:
- invalid-name
- missing-module-docstring
- missing-class-docstring
- missing-function-docstring
options:
max-line-length: 130
# 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 configuration (no docstring in this project)
pydocstyle:
run: false
# pycodestyle configuration
pycodestyle:
disable:
- N802 # function name should be lowercase
options:
max-line-length: 130