pylint: Upgrade to version 2.10.2.

This PR sets pylint to version 2.10.2 in all linter actions, and
fixes code in plugins so that this version new checks are either
satisfied or ignored if needed.
This commit is contained in:
Rafael Guterres Jeffman
2021-08-31 19:45:12 -03:00
parent 72d54d2f9e
commit 928540fa27
6 changed files with 10 additions and 7 deletions

View File

@@ -34,6 +34,9 @@ ignore = D1,D212,D203
[pylint.MASTER]
disable =
unspecified-encoding, # open() does not provide `encoding` in Python2
use-maxsplit-arg,
redundant-u-string-prefix,
c-extension-no-member,
missing-module-docstring,
missing-class-docstring,