From 246d9f5f748f8387cf33b17265c816b147046b28 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Sat, 3 Jan 2026 17:41:16 -0600 Subject: [PATCH] chore(taskfile): simplify linting commands in Taskfile.yml to check all files --- Taskfile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 75a3f79..5fa443c 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -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