From 30171dfbc9e3e605617e44b8d2782fd28eaf8543 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Thu, 12 Feb 2026 11:55:48 +0300 Subject: [PATCH] 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. --- Makefile | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Makefile b/Makefile index 9845e4e2..12e60654 100644 --- a/Makefile +++ b/Makefile @@ -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