-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.prospector.yaml
More file actions
51 lines (43 loc) · 659 Bytes
/
.prospector.yaml
File metadata and controls
51 lines (43 loc) · 659 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
output-format: text
strictness: veryhigh
test-warnings: true
doc-warnings: false
member-warnings: true
uses:
- django
- celery
pep8:
full: true
disable:
- D100
- D101
- D102
- D103
- D105
- D205
- D400
- N802 # function name should be lowercase, breaks on tests
options:
max-line-length: 100
pyflakes:
disable:
- F999
pylint:
disable:
- too-few-public-methods
- invalid-name
- no-self-use
- no-member
options:
max-line-length: 100
dodgy:
run: true
ignore-paths:
- node_modules
- venv
- env
- .env
- .venv
ignore-patterns:
- .+/migrations/.+
- .+/settings/.+