Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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