* bumping version, removing non-osx compatible deps * updating pylintrc * fixing linters * reverting changes
16 lines
697 B
INI
16 lines
697 B
INI
[MASTER]
|
|
init-hook="from pylint.config import find_default_config_files; import sys; sys.path.append(next(find_default_config_files()).parent.as_posix())"
|
|
|
|
[TYPECHECK]
|
|
|
|
# List of members which are set dynamically and missed by Pylint inference
|
|
# system, and so shouldn't trigger E1101 when accessed.
|
|
generated-members=numpy.*, torch.*
|
|
|
|
|
|
[pylint.messages_control]
|
|
disable=missing-function-docstring, line-too-long, import-error,
|
|
too-many-arguments, too-many-locals, too-many-statements, too-many-branches, too-few-public-methods,
|
|
too-many-instance-attributes, fixme, import-outside-toplevel, logging-fstring-interpolation,
|
|
too-many-positional-arguments, possibly-used-before-assignment
|