From 74e1aa2565d1f392624ade947f200322fdb98fde Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Wed, 25 Sep 2024 19:07:34 +0200 Subject: [PATCH] feat: activate ruff --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4f60706e..920e20c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -123,13 +123,13 @@ dependencies = [ [tool.hatch.envs.linting.scripts] typing = "mypy {args:} ./src/ ./tests/" style = [ - # "ruff {args:}", + "ruff check {args:} ./src/ ./tests/", "black --check --diff {args:} ./src/ ./tests/", "isort --check-only --profile black {args:} ./src/ ./tests/", ] fmt = [ "black {args:} ./src/ ./tests/", - # "ruff --fix {args:}", + "ruff --fix {args:}", "isort --profile black {args:} ./src/ ./tests/", "style", ]