feat: use prettier for i18n translations (#24623)

This commit is contained in:
Brandon Wees 2026-01-06 10:02:10 -05:00 committed by GitHub
parent 006d02cfaf
commit f52bd9f38a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 37 additions and 6 deletions

13
i18n/package.json Normal file
View file

@ -0,0 +1,13 @@
{
"name": "immich-i18n",
"version": "1.0.0",
"private": true,
"scripts": {
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"devDependencies": {
"prettier": "^3.7.4",
"prettier-plugin-sort-json": "^4.1.1"
}
}