-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prospector.yaml
66 lines (57 loc) · 946 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
61
62
63
64
65
66
output-format: text
strictness: high
test-warnings: false
doc-warnings: false
member-warnings: false
inherits:
- strictness_high
uses:
- django
- celery
pep8:
full: true
disable:
- D100
- D101
- D102
- D103
- D105
- D205
- D400
- N802 # function name should be lowercase, breaks on tests
- E203
options:
max-line-length: 125
pyflakes:
disable:
- F999
pylint:
disable:
- too-few-public-methods
- invalid-name
- no-self-use
- no-member
- import-error
- unused-argument
- django-not-available
- logging-format-interpolation
- too-many-branches
- too-many-statements
- too-many-locals
- line-too-long
- too-many-arguments
- unspecified-encoding
options:
max-line-length: 100
mccabe:
disable:
- MC0001
dodgy:
run: true
ignore-paths:
- node_modules
- venv
- env
ignore-patterns:
- migrations
- settings