Files
openclaw-mission-control/backend/scripts/lint.sh
2026-02-02 22:04:21 +05:30

10 lines
140 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")/.."
. .venv/bin/activate
python -m black .
python -m isort .
python -m flake8 .