forked from TECHS-Technological-Solutions/ocpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prospector.yaml
61 lines (55 loc) · 974 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
inherits:
- strictness_veryhigh
- full_pep8
ignore-paths:
- bin
- config
- docs
- coverage
- requirements
- venv
- env
- node_modules
- manage.py
- alembic
doc-warnings: false
test-warnings: true
uses:
- celery
pylint:
disable:
- wildcard-import
- relative-import
- invalid-name
- unused-wildcard-import
- wrong-import-position
- too-few-public-methods
- old-style-class
- no-init
- no-self-use
- unused-argument
- too-many-arguments
- too-many-instance-attributes
- attribute-defined-outside-init
- redefined-builtin
- too-many-ancestors
- arguments-differ
- abstract-method
- too-many-function-args
- assignment-from-none
- redefined-outer-name
- no-self-argument
options:
max-locals: 25
max-line-length: 120
pycodestyle:
disable:
- E402
- N805
options:
max-line-length: 120
pyflakes:
disable:
- F403
- F401
- F999