2021-09-24 19:36:53 +00:00
|
|
|
[MASTER]
|
|
|
|
init-hook="from pylint.config import find_pylintrc; import os, sys; sys.path.append(os.path.dirname(find_pylintrc()) + '/src'); sys.path.append(os.path.dirname(find_pylintrc()) + '/test')"
|
|
|
|
|
|
|
|
[MESSAGES CONTROL]
|
|
|
|
disable=
|
|
|
|
missing-module-docstring,
|
|
|
|
missing-class-docstring,
|
|
|
|
missing-function-docstring,
|
|
|
|
global-statement,
|
|
|
|
too-many-arguments,
|
|
|
|
too-few-public-methods,
|
|
|
|
wrong-import-position,
|
|
|
|
redefined-outer-name,
|
|
|
|
invalid-name,
|
2021-11-04 00:07:42 +00:00
|
|
|
no-self-use,
|
2021-11-15 20:18:54 +00:00
|
|
|
too-many-instance-attributes,
|
|
|
|
fixme
|
2021-09-24 19:36:53 +00:00
|
|
|
|
|
|
|
[FORMAT]
|
|
|
|
indent-string=' '
|
|
|
|
max-line-length=160
|
|
|
|
|
|
|
|
[SIMILARITIES]
|
2022-04-14 23:22:45 +00:00
|
|
|
ignore-comments = no
|