mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-01-03 23:29:45 -06:00
12 lines
244 B
Bash
Executable File
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
|