Files
hatchet/sdks/python/lint.sh
Matt Kaye 5062bf1e3e V1 SDKs and Docs (#1361)
New SDKs and docs for the v1 release.
2025-03-25 15:45:07 -07:00

12 lines
244 B
Bash
Executable File

echo "\nLinting with ruff"
poetry run ruff check . --fix
echo "Formatting with black"
poetry run black . --color
echo "\nFormatting with isort"
poetry run isort .
echo "\nType checking with mypy"
poetry run mypy --config-file=pyproject.toml