Files
picard/.prospector.yml
Philipp Wolfer 8c219d16a5 Enable flake8 E402: Module level import not at top of file
This also removes some exceptions for isort which are not really necessary.
2020-05-13 17:04:11 +02:00

25 lines
656 B
YAML

# Configuration for prospector, mainly used by Codacy.
pep8:
# Please see comments in setup.cfg as to why we disable the below checks.
disable:
- E127
- E128
- E129
- E226
- E241
- E501
- W503
pyflakes:
disable:
# Undefined name. Ignore this since it otherwise detects the gettext
# helpers (_, ngettext, N_) as undefined. There seems to be no clean way
# to specify additional builtins for pyflakes with prospector.
# We also test for this with flake8 in a saner way.
- F821
# Ignore syntax errors as reported by PyFlages since on Codacy this does
# not support Python 3 syntax.
- F999