From 8941957745eaef235bf947a67042553e45365f9b Mon Sep 17 00:00:00 2001 From: Jeremy Moore Date: Fri, 20 Sep 2024 13:16:11 -0400 Subject: [PATCH] don't run ruff/mypy via container --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 35b8c4f0..65d0c2df 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,6 @@ migrate-prod: ## Run prod env (alembic) migrations .PHONY: lint lint: ## Lint the code - docker compose run --rm app \ poetry run ruff format --check && \ poetry run ruff check && \ poetry run mypy . @@ -33,7 +32,6 @@ lint: ## Lint the code .PHONY: fix fix: ## Format the code - docker compose run --rm app \ poetry run ruff format && \ poetry run ruff check --fix docker run --rm -v $(shell pwd):/work tmknom/prettier:3.2.5 --write ./*.md ./docs ./.github/workflows/* ./hushline