mirror of
https://github.com/omnara-ai/omnara.git
synced 2025-08-12 20:39:09 +03:00
15 lines
240 B
Bash
Executable File
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!" |