Commit 150ba0d2 authored by ento's avatar ento

Ignore new pylint checks with lots of existing violations

parent 6ab7499a
......@@ -55,6 +55,8 @@ limit-inference-results=1
# Pylint 2.4 adds self-assigning-variable. But we do *that* to avoid unused-import when we
# "export" the variable and don't have a __all__.
# Pylint 2.6+ adds some python-3-only things that don't apply: raise-missing-from, super-with-arguments, consider-using-f-string, redundant-u-string-prefix
# unnecessary-lambda-assignment: New check introduced in v2.14.0
# unnecessary-dunder-call: New check introduced in v2.14.0
disable=wrong-import-position,
wrong-import-order,
missing-docstring,
......@@ -80,7 +82,9 @@ disable=wrong-import-position,
raise-missing-from,
super-with-arguments,
consider-using-f-string,
redundant-u-string-prefix
redundant-u-string-prefix,
unnecessary-lambda-assignment,
unnecessary-dunder-call
[FORMAT]
# duplicated from setup.cfg
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment