mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-28 09:33:46 +00:00
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:
10
biome.json
10
biome.json
@@ -1,7 +1,15 @@
|
||||
{
|
||||
"$schema": "https://biomejs.dev/schemas/2.5.3/schema.json",
|
||||
"files": {
|
||||
"includes": ["**", "!dist", "!node_modules", "!public", "!package-lock.json"]
|
||||
"includes": [
|
||||
"**",
|
||||
"!dist",
|
||||
"!node_modules",
|
||||
"!public",
|
||||
"!package-lock.json",
|
||||
"!**/*.min.js",
|
||||
"!**/*.min.css"
|
||||
]
|
||||
},
|
||||
"formatter": {
|
||||
"enabled": true,
|
||||
|
||||
Reference in New Issue
Block a user