From 072a0d7c0a8b76ccc815cf946064db37d35309af Mon Sep 17 00:00:00 2001 From: rus07tam Date: Sun, 26 Oct 2025 17:52:06 +0000 Subject: [PATCH] chore(lint): configure pylint to fail only on errors --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 13fdbbc..8985c74 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,4 +37,5 @@ init-hook = "import sys; sys.path.append('.venv/lib/python3.12/site-packages')" disable = ["C0114", "C0115", "C0116", "R0801"] max-args = 8 max-positional-arguments = 7 -min-public-methods = 1 \ No newline at end of file +min-public-methods = 1 +fail-on = "error" \ No newline at end of file