pylintrc 415 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
[REPORTS]
reports=no

[FORMAT]
max-line-length=120

[MESSAGES CONTROL]
disable=
	abstract-class-not-used,
	broad-except,
	cyclic-import,
	fixme,
	invalid-name,
	locally-disabled,
	maybe-no-member,
	missing-docstring,
	protected-access,
	star-args,
	too-few-public-methods,
	too-many-public-methods,
	too-many-ancestors,
	too-many-arguments,
	too-many-locals,
	unused-argument

[SIMILARITIES]
27
min-similarity-lines=8