25 lines
586 B
INI
25 lines
586 B
INI
[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,
|
|
no-self-use,
|
|
too-many-instance-attributes,
|
|
fixme
|
|
|
|
[FORMAT]
|
|
indent-string=' '
|
|
max-line-length=160
|
|
|
|
[SIMILARITIES]
|
|
ignore-comments = no
|