chore: run lint and prettifier

This commit is contained in:
3252a8
2026-05-12 21:54:12 +03:00
parent f31540afdb
commit 11187487b4
174 changed files with 12383 additions and 6688 deletions
+15
View File
@@ -0,0 +1,15 @@
# Запуск из корня репозитория: .\scripts\check-all.ps1
$ErrorActionPreference = "Stop"
$root = Split-Path -Parent $PSScriptRoot
Set-Location $root
Write-Host "Python: pip install -r requirements-dev.txt" -ForegroundColor Cyan
python -m pip install -q -r requirements-dev.txt
if (-not (Test-Path (Join-Path $root "node_modules"))) {
Write-Host "npm install (нет node_modules)" -ForegroundColor Cyan
npm install
}
Write-Host "npm run check" -ForegroundColor Cyan
npm run check