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 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$ROOT"
echo "Python: pip install -r requirements-dev.txt"
python -m pip install -q -r requirements-dev.txt
if [[ ! -d node_modules ]]; then
echo "npm install (no node_modules)"
npm install
fi
echo "npm run check"
npm run check