gunicorn/.prospector.yaml
Berker Peksag f859447a39 Update prospector configuration
* Disable pep8 and pyflakes
* Disable unnecessary options of pylint
2017-07-12 18:07:16 +03:00

45 lines
919 B
YAML

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