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=
invalid-name,
bad-continuation,
bad-whitespace,
consider-using-f-string,
too-few-public-methods,
too-many-locals,
too-many-branches,
......@@ -21,6 +22,7 @@ disable=
useless-object-inheritance,
unnecessary-pass,
raise-missing-from,
redundant-u-string-prefix,
super-with-arguments
[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