forked from ebellocchia/py_crypto_hd_wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprospector.yaml
50 lines (43 loc) · 1.11 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
strictness: high
test-warnings: false
doc-warnings: true
member-warnings: true
ignore-paths:
- tests
ignore-patterns:
- setup.py
- _version.py
# pylint configuration
pylint:
disable:
- invalid-name
- missing-module-docstring
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
# pep257 configuration
pep257:
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
# pep8 configuration
pep8:
disable:
- N802 # function name should be lowercase
options:
max-line-length: 120