mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-03-18 02:33:00 -05:00
* feat: adds support for multiple slot types, primarily motivated by durable slots --------- Co-authored-by: mrkaye97 <mrkaye97@gmail.com>
16 lines
318 B
Bash
Executable File
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
|