Skip to content

Commit

Permalink
{Pylint} Adapt to Pylint 2.11.1 (#20192)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiasli authored Nov 5, 2021
1 parent e971b81 commit 6ddfc1a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ reports=no
# import-outside-toplevel: Lazy import to improve performance
# locally-disabled: Warning locally suppressed using disable-msg
# too-many-arguments: Due to the nature of the CLI many commands have large arguments set which reflect in large arguments set in corresponding methods.
# consider-using-f-string: str.format is still a Python standard
# unspecified-encoding: Allow using the system encoding, instead of forcing utf-8 to avoid opening errors
disable=
arguments-out-of-order,
bad-option-value,
Expand All @@ -33,6 +35,20 @@ disable=
too-many-lines,
using-constant-test,
wrong-import-order,
consider-using-f-string,
unspecified-encoding,
consider-using-from-import,
use-maxsplit-arg,
arguments-renamed,
consider-using-in,
use-dict-literal,
consider-using-dict-items,
consider-using-enumerate,
redundant-u-string-prefix,
use-list-literal,
raising-bad-type,
unused-private-member,
used-before-assignment

[FORMAT]
max-line-length=120
Expand Down

0 comments on commit 6ddfc1a

Please sign in to comment.