chore(taskfile): simplify linting commands in Taskfile.yml to check all files

This commit is contained in:
2026-01-03 17:41:16 -06:00
parent 3ed9c96f6c
commit 246d9f5f74

View File

@@ -63,8 +63,8 @@ tasks:
lint-python:
desc: Lint Python code using ruff
cmds:
- poetry run ruff check meshchatx tests scripts --exclude tests/frontend --exclude .pnpm-store
- poetry run ruff format --check meshchatx tests scripts --exclude tests/frontend --exclude .pnpm-store
- poetry run ruff check .
- poetry run ruff format --check .
lint-frontend:
desc: Lint frontend code