From 55abb6e341a48ed993b991e5ee126328ba59d0e5 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Sat, 18 Nov 2023 07:14:19 +0100 Subject: [PATCH] ci: Enable (almost) all PyLint messages --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 2da6b4a..61dcc9a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,6 +54,10 @@ force_sort_within_sections = true line_length = 120 profile = "black" +[tool.pylint.messages_control] +enable = ["all"] +disable = ["locally-disabled", "suppressed-message"] + [tool.pylint.format] max-line-length = 120