We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d2ed06 commit 3aa6950Copy full SHA for 3aa6950
.prospector.yml
@@ -19,6 +19,12 @@ pyflakes:
19
# to specify additional builtins for pyflakes with prospector.
20
# We also test for this with flake8 in a saner way.
21
- F821
22
- # Ignore syntax errors as reported by PyFlages since on Codacy this does
+ # F401: Module imported but unused
23
+ # F841: Unused variables
24
+ # We have some valid cases for both, but PyFlakes does not allow to ignore
25
+ # them case by case. flake8 also checks this, so this is redundant.
26
+ - F401
27
+ - F841
28
+ # Ignore syntax errors as reported by PyFlakes since on Codacy this does
29
# not support Python 3 syntax.
- - F999
30
+ # - F999
0 commit comments