From c6d02f60ec5b22dd77bae1f41c3a64cb4be7bc8b Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Thu, 3 Sep 2026 11:46:51 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=91=B7=20Use=20backend=20mypy=20confi?= =?UTF-8?q?g=20in=20pre-commit=20hook?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8a810af6ae..eab3f72be6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -47,7 +47,7 @@ repos: - id: local-mypy name: mypy check - entry: uv run mypy backend/app + entry: uv run mypy --config-file backend/pyproject.toml backend/app require_serial: true language: unsupported pass_filenames: false From 7e9a57b0e473c33ef6a621f1cef779bd4feb9e0e Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Thu, 3 Sep 2026 12:17:19 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=91=B7=20Use=20backend=20ty=20config?= =?UTF-8?q?=20in=20pre-commit=20hook?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index eab3f72be6..71a032ba11 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -54,7 +54,7 @@ repos: - id: local-ty name: ty check - entry: uv run ty check backend/app + entry: uv run ty check --project backend backend/app require_serial: true language: unsupported pass_filenames: false