Sort pylint disables

This commit is contained in:
Mikhail f. Shiryaev 2024-10-02 13:32:54 +02:00
parent 4ed0abcb13
commit 97a647ce0c
No known key found for this signature in database
GPG Key ID: 4B02ED204C7D93F4

View File

@ -13,19 +13,19 @@ max-statements=200
[tool.pylint.'MESSAGES CONTROL']
# pytest.mark.parametrize is not callable (not-callable)
disable = '''
missing-docstring,
too-few-public-methods,
invalid-name,
too-many-arguments,
too-many-locals,
too-many-instance-attributes,
bare-except,
broad-except,
cell-var-from-loop,
fixme,
invalid-name,
missing-docstring,
redefined-outer-name,
too-few-public-methods,
too-many-arguments,
too-many-instance-attributes,
too-many-locals,
too-many-public-methods,
wildcard-import,
redefined-outer-name,
broad-except,
bare-except,
'''
[tool.isort]