tinker/scripts/lint
Daniel Xu 829c151ba7 Publish Python SDK
Hello world!

Signed-off-by: Daniel Xu <dxu@dxuuu.xyz>
2025-10-01 10:33:59 -07:00

17 lines
248 B
Bash
Executable file

#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."
echo "==> Running ruff"
uv run ruff check .
echo "==> Running pyright"
uv run pyright
echo "==> Running mypy"
uv run mypy .
echo "==> Making sure it imports"
uv run python -c 'import tinker'