forked from metabrainz/picard-plugins
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.prospector.yml
30 lines (27 loc) · 899 Bytes
/
.prospector.yml
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
# 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
# F401: Module imported but unused
# F841: Unused variables
# We have some valid cases for both, but PyFlakes does not allow to ignore
# them case by case. flake8 also checks this, so this is redundant.
- F401
- F841
# Ignore syntax errors as reported by PyFlakes since on Codacy this does
# not support Python 3 syntax.
# - F999