fix(Taskfile): update ruff commands to format and check current directory instead of excluding tests

This commit is contained in:
Ivan 2026-07-07 11:32:13 -05:00
parent 8d91896b23
commit 4e4801100c
No known key found for this signature in database

View file

@ -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)