-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prospector.yaml
60 lines (52 loc) · 889 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
52
53
54
55
56
57
58
59
60
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-many-instance-attributes
- too-few-public-methods
- invalid-name
- no-self-use
- no-member
- too-many-ancestors
- import-error
- relative-beyond-top-level
- arguments-differ
- invalid-name
- attribute-defined-outside-init
- no-name-in-module
options:
max-line-length: 100
dodgy:
run: true
ignore-paths:
- node_modules
- venv
- poke-battle
- env
- .env
- .venv
ignore-patterns:
- .+/migrations/.+
- .+/settings/.+