forked from IBM/mcp-context-forge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.prospector.yaml
More file actions
55 lines (47 loc) · 929 Bytes
/
.prospector.yaml
File metadata and controls
55 lines (47 loc) · 929 Bytes
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
# .prospector.yaml - Configuration for prospector
output-format: text
strictness: medium
test-warnings: false
doc-warnings: true
member-warnings: true
ignore-paths:
- docs
- build
- dist
- .tox
- .eggs
- venv
- .venv
- node_modules
ignore-patterns:
- .*\.egg$
- .*migrations.*
- .*settings\.py
- .*manage\.py
- tests/.*
pylint:
disable:
- too-few-public-methods
- too-many-arguments
- too-many-instance-attributes
- too-many-locals
pep8:
full: true
options:
max-line-length: 200
mccabe:
run: true
options:
max-complexity: 10
dodgy:
run: true
pyroma:
run: true
disable:
- PYR19 # Has Readme
- PYR16 # Has proper author
pep257:
disable:
- D203 # 1 blank line required before class docstring
- D212 # Multi-line docstring summary should start at the first line
- D213 # Multi-line docstring summary should start at the second line