chore(makefile): remove unused targets for formatting and type checking, move to pre-commit

Simplifies the Makefile by removing redundant `format`, `check`, and `typecheck` targets. Streamlines build and maintenance process.
This commit is contained in:
Egor Pavlovich Gorbunov 2026-02-12 11:55:48 +03:00
parent 20473818a9
commit 30171dfbc9

View file

@ -106,17 +106,3 @@ migrate: clear
@$(call RUN_SCRIPT,migrate)
migration: clear make-migrations migrate
format: clear
@ruff format
check: clear
@ruff check
typecheck: clear
@ty check
precommit: clear
@ruff format
@ruff check
@ty check