From 0d7164a9f67b8c56932dcb4b4d90fbb69d5f68d5 Mon Sep 17 00:00:00 2001 From: Jonas L Date: Wed, 27 Mar 2024 15:49:19 +0100 Subject: [PATCH] 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. --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 5263580..8047f10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", ]