taskflow/.pylintrc
Takashi Kajinami 1a8bab0992 Bump pylint
The current version can no longer run. Bump it to the version
currently used in a few other repos. Note that failures detected are
not yet resolved.

Also move pylintrc to the path which is automatically detected by
pylint to simplify the command line.

Change-Id: I3747b064cec1b19d6de6db3ffe9ae5cf8ca34b02
2024-11-23 21:40:50 +09:00

35 lines
793 B
INI

[MESSAGES CONTROL]
# Disable the message(s) with the given id(s).
disable=C0111,I0011,R0201,R0922,W0142,W0511,W0613,W0622,W0703
[BASIC]
# Variable names can be 1 to 31 characters long, with lowercase and underscores
variable-rgx=[a-z_][a-z0-9_]{0,30}$
# Argument names can be 2 to 31 characters long, with lowercase and underscores
argument-rgx=[a-z_][a-z0-9_]{1,30}$
# Method names should be at least 3 characters long
# and be lowercased with underscores
method-rgx=[a-z_][a-z0-9_]{2,50}$
# Don't require docstrings on tests.
no-docstring-rgx=((__.*__)|([tT]est.*)|setUp|tearDown)$
[DESIGN]
max-args=10
max-attributes=20
max-branchs=30
max-public-methods=100
max-statements=60
min-public-methods=0
[REPORTS]
output-format=parseable
include-ids=yes
[VARIABLES]
additional-builtins=_