Files
hatchet/sdks/python/lint.sh
Gabe Ruttner 2fdc47a6af feat: multiple slot types (#2927)
* feat: adds support for multiple slot types, primarily motivated by durable slots

---------

Co-authored-by: mrkaye97 <mrkaye97@gmail.com>
2026-02-17 05:43:47 -08:00

16 lines
318 B
Bash
Executable File

#!/bin/bash
set -eo pipefail
echo "\nLinting with ruff"
poetry run ruff check . --fix
echo "Formatting with black"
poetry run black . --color
echo "\nType checking with mypy"
poetry run mypy --config-file=pyproject.toml
echo "\nLinting documentation with pydoclint"
poetry run pydoclint . --config pyproject.toml