chore: disable out of scope pylint rules (#478)

##### SUMMARY

Disable some pylint rules that are out of scope for the time being, to
stop polluting the pylint errors report. Those might be re-enabled at a
later stage.
This commit is contained in:
Jonas L 2024-03-27 15:49:19 +01:00 committed by GitHub
parent 4bb02b9cd2
commit 0d7164a9f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,4 +25,9 @@ good-names = ["i", "j", "k", "ex", "_", "ip", "id"]
[tool.pylint.messages_control]
disable = [
"wrong-import-position",
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"duplicate-code",
"use-dict-literal",
]