Files
omnara-agent-monitor/scripts/lint.sh
Kartik Sarangmath d12fe4a101 Initial commit
2025-07-08 19:17:44 -07:00

15 lines
240 B
Bash
Executable File

#!/bin/bash
# Script to run linting and type checking
set -e
echo "Running ruff check..."
ruff check .
echo -e "\nRunning ruff format check..."
ruff format --check .
echo -e "\nRunning pyright..."
pyright
echo -e "\nAll checks passed!"