forked from benoitc/gunicorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prospector.yaml
44 lines (39 loc) · 919 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
test-warnings: true
ignore-paths:
- gunicorn/_compat.py
- gunicorn/argparse_compat.py
- gunicorn/selectors.py
- gunicorn/six.py
- build
- docs
- examples
- scripts
- tests/requests/valid
- tests/requests/invalid
- tests/treq.py # We are going to replace this with pytest.
- tests/t.py # Same as above.
- tests/test_selectors.py # This basically port of upstream selectors tests.
- tests/test_gaiohttp.py # TODO: We are going to remove this worker.
pep8:
run: false
pyflakes:
run: false
pylint:
disable:
- bare-except
- misplaced-comparison-constant
- protected-access
- import-error
- too-many-branches
- too-many-arguments
- too-many-nested-blocks
- eval-used
- no-else-return
- wrong-import-position
- unused-argument
- import-self
- duplicate-bases
- no-staticmethod-decorator
- not-callable
mccabe:
run: false