forked from microsoft/msticpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prospector.yml
36 lines (30 loc) · 827 Bytes
/
prospector.yml
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
# prospector configuration file
---
output-format: grouped
strictness: veryhigh
doc-warnings: true
test-warnings: true
member-warnings: false
ignore-paths:
- docs
- tests
pyroma:
run: true
pycodestyle:
full: true
disable: [
E501, # Line length handled by Black
]
pydocstyle:
disable: [
# Disable because not part of PEP257 official convention:
# see http://pep257.readthedocs.io/en/latest/error_codes.html
D203, # 1 blank line required before class docstring
D212, # Multi-line docstring summary should start at the first line
D404, # First word of the docstring should not be This
D416, # Using numpy docstring standards
]
pylint:
disable:
- bad-continuation # conflicts with Black formatting
- relative-beyond-top-level # multiple false positives