Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ yarn.lock
/playwright/.cache/

.env
# Never commit API keys (i18n sync, local dev). Use shell exports instead of committing .env.local.
.env.local
.env.production
.env.development
Expand Down
2 changes: 2 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/usr/bin/env sh
npx lint-staged

npm run check:i18n

# Run Python pre-commit checks if backend files are staged
if git diff --cached --name-only | grep -q "^backend/"; then
echo "Running backend pre-commit checks..."
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@
"test:watch": "vitest",
"test:e2e": "vitest run --config vitest.config.ts",
"test:coverage": "vitest run --coverage",
"check:i18n": "node scripts/check-i18n-locale-parity.js",
"check:i18n": "node scripts/check-i18n-schema.js",
"check:i18n:strict": "node scripts/check-i18n-schema.js --fail-on-unused --fail-on-untranslated",
"i18n:sync": "node scripts/sync-i18n-translations.js",
"check:design-token-usage": "node scripts/check-design-token-usage.mjs",
"check:design-tokens": "npm run verify:theme && npm run check:design-token-usage",
"verify:theme": "vite-node scripts/verify-theme-tokens.ts",
Expand Down
122 changes: 0 additions & 122 deletions scripts/check-i18n-locale-parity.js

This file was deleted.

Loading