pyproject.toml: Ignore some refactoring messages with pylint

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2022-06-22 20:06:01 -07:00 committed by James Valleroy
parent eaa3a59791
commit bb35ddfeaa
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -71,3 +71,10 @@ markers = [
"wordpress",
"zoph",
]
# Useful when pylint is invoked separately instead of flake8
[tool.pylint.'MESSAGES CONTROL']
disable = [
"too-many-arguments", # Has not resulted in a refactoring
"too-many-ancestors", # Easy to hit when using Django
]