From 6948efc49d6dd10225381ecccc6184dfbda3c8ef Mon Sep 17 00:00:00 2001 From: mateo-berri <277851410+mateo-berri@users.noreply.github.com> Date: Fri, 12 Jun 2026 05:05:36 +0000 Subject: [PATCH] feat(translation): wire file-size and CLAUDE.md freshness gates into make lint-translation --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 600908588a..57740edb9c 100644 --- a/Makefile +++ b/Makefile @@ -167,6 +167,8 @@ lint-translation: install-test-deps uv tool run --from 'pyright==1.1.406' pyright --project litellm/translation uv tool run --from 'semgrep==1.157.0' semgrep scan --config .semgrep/rules litellm/translation --error -q $(UV_RUN) lint-imports + $(UV_RUN) python scripts/check_translation_file_sizes.py + $(UV_RUN) python scripts/check_translation_claude_md.py LITELLM_LOCAL_MODEL_COST_MAP=True $(UV_RUN) pytest tests/test_litellm/translation --tb=short -q test-unit-root: install-test-deps