From 981d6f4e27f77bea9ec0f834c355d7cafa01dfe3 Mon Sep 17 00:00:00 2001 From: unai_71 Date: Sun, 1 Feb 2026 19:58:58 +0100 Subject: [PATCH] excluded tests folder from linting --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c812d5a..6cd1cc4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ build-backend = "poetry.core.masonry.api" [tool.ruff] line-length = 88 target-version = "py314" - +exclude = ["tests"] [tool.ruff.lint] # E/F: Errores base, I: Imports (isort), D: Docstrings select = ["E", "F", "I", "D"]