From c72f2ff626902687e6a0851f999950b98d12230b Mon Sep 17 00:00:00 2001 From: Bastien Vallet Date: Thu, 26 Dec 2024 08:45:44 +0100 Subject: [PATCH] ruff: re-enable basic checks --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 1637277..b6c5412 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,3 +46,10 @@ graph = [ [tool.ruff] target-version = 'py39' line-length = 120 + +[tool.ruff.lint] +# See complete list : https://docs.astral.sh/ruff/rules/ +select = [ + "F", # pyflakes + "I", # isort +]