chore(tooling): восстановить точный паритет с eslint/prettier

- telegram-webview-guards.grit: исключение сузил с подстроки "platform"
  до якорного "src/platform/" — прежний eslint-override действовал ровно на
  src/platform/**, а bare-substring щадил бы любой файл с "platform" в имени
  (проверено: src/platform всё ещё exempt, гвард срабатывает в обычных файлах)
- biome.json: вернул исключения *.min.js/*.min.css из .prettierignore
- lint-staged: вернул форматирование *.css в pre-commit (biome format --write) —
  иначе CI-формат-чек ловил бы css, который хук не трогал
- lint.yml: метка шага "Run ESLint" → "Run linter" (выполняет biome)
This commit is contained in:
Fringg
2026-07-12 01:35:44 +03:00
parent 0abc2f30ae
commit fd85ba1ae1
4 changed files with 20 additions and 5 deletions

View File

@@ -92,6 +92,9 @@
"lint-staged": {
"*.{ts,tsx,json}": [
"biome check --write --no-errors-on-unmatched"
],
"*.css": [
"biome format --write --no-errors-on-unmatched"
]
}
}