.pylintrc: use symbolic names for message suppressions

This commit is contained in:
Adeodato Simó 2024-07-27 02:47:08 -03:00
parent ab307388f4
commit 2cdbddca09

View file

@ -3,7 +3,20 @@ ignore=migrations
load-plugins=pylint.extensions.no_self_use
[MESSAGES CONTROL]
disable=E1101,E1135,E1136,R0903,R0901,R0902,W0707,W0511,W0406,R0401,R0801,C3001,import-error
disable =
cyclic-import,
duplicate-code,
fixme,
import-error,
import-self,
no-member,
raise-missing-from,
too-few-public-methods,
too-many-ancestors,
too-many-instance-attributes,
unnecessary-lambda-assignment,
unsubscriptable-object,
unsupported-membership-test,
[FORMAT]
max-line-length=88