We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06f1337 commit 6e6fa04Copy full SHA for 6e6fa04
pylint_django/compat.py
@@ -1,4 +1,4 @@
1
-# flake8: noqa
+# flake8: noqa: F401
2
# pylint: skip-file
3
# no sane linter can figure out the hackiness in this compatibility layer...
4
import sys
pyproject.toml
@@ -86,6 +86,7 @@ lint.select = [
86
"W", # pycodestyle
87
]
88
lint.ignore = [
89
+ "PLC0415", # `import` should be at the top-level of a file
90
"PLR0912", # Too many branches, worse than C901
91
"PLR0915", # Too many statements, worse than C901
92
"PLR2004", # Magic value used in comparison, opinionated
0 commit comments