From b18a538ced59124b5ac14e43352b8075019f5941 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Fri, 2 Jan 2026 01:19:44 -0600 Subject: [PATCH] feat(taskfile): rename 'develop' task to 'dev', add 'fix' task for linting and formatting issues --- Taskfile.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Taskfile.yml b/Taskfile.yml index 01ff738..40f9b0d 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -70,8 +70,9 @@ tasks: cmds: - "{{.PYTHON}} -m poetry run meshchat" - develop: + dev: desc: Run the application in development mode + deps: [build-frontend] cmds: - task: run @@ -149,6 +150,14 @@ tasks: cmds: - "{{.PYTHON}} scripts/sync_version.py" + fix: + desc: Format and fix linting issues (Python and frontend) + cmds: + - "{{.PYTHON}} -m poetry run ruff format ./" + - "{{.PYTHON}} -m poetry run ruff check --fix ./" + - "{{.NPM}} run format" + - "{{.NPM}} run lint:fix" + build-docker: desc: Build Docker image using buildx cmds: