From 4e4801100cf6dcc9db55fccdac97844306209313 Mon Sep 17 00:00:00 2001 From: Ivan Date: Tue, 7 Jul 2026 11:32:13 -0500 Subject: [PATCH] fix(Taskfile): update ruff commands to format and check current directory instead of excluding tests --- Taskfile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 1cabb423..8fdd2a68 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -154,8 +154,8 @@ tasks: aliases: [fmt:be, format:be] desc: Format Python code (Ruff) cmds: - - uv run ruff format ./ --exclude tests - - uv run ruff check --fix ./ --exclude tests + - uv run ruff format . + - uv run ruff check --fix . lint: desc: Run all linters (ESLint, vue-tsc, knip, Ruff, basedpyright)