Commit 792d49e9 authored by Vincent Pelletier's avatar Vincent Pelletier

.pylintrc: Silence some pylint warnings.

This codebase must remain py2 compatible for some more, so do not complain
about backward-compatible code.
parent 67671d61
...@@ -13,6 +13,7 @@ disable= ...@@ -13,6 +13,7 @@ disable=
invalid-name, invalid-name,
bad-continuation, bad-continuation,
bad-whitespace, bad-whitespace,
consider-using-f-string,
too-few-public-methods, too-few-public-methods,
too-many-locals, too-many-locals,
too-many-branches, too-many-branches,
...@@ -21,6 +22,7 @@ disable= ...@@ -21,6 +22,7 @@ disable=
useless-object-inheritance, useless-object-inheritance,
unnecessary-pass, unnecessary-pass,
raise-missing-from, raise-missing-from,
redundant-u-string-prefix,
super-with-arguments super-with-arguments
[FORMAT] [FORMAT]
......
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