feat: add routes for steps (#839)

This commit is contained in:
cthomas
2025-01-29 20:57:09 -08:00
committed by GitHub
parent 070d702197
commit b37792c6b8
4 changed files with 138 additions and 3 deletions

View File

@@ -13,18 +13,18 @@ repos:
hooks:
- id: autoflake
name: autoflake
entry: bash -c 'cd apps/core && poetry run autoflake --remove-all-unused-imports --remove-unused-variables --in-place --recursive --ignore-init-module-imports .'
entry: poetry run autoflake --remove-all-unused-imports --remove-unused-variables --in-place --recursive --ignore-init-module-imports .
language: system
types: [python]
- id: isort
name: isort
entry: bash -c 'cd apps/core && poetry run isort --profile black .'
entry: poetry run isort --profile black .
language: system
types: [python]
exclude: ^docs/
- id: black
name: black
entry: bash -c 'cd apps/core && poetry run black --line-length 140 --target-version py310 --target-version py311 .'
entry: poetry run black --line-length 140 --target-version py310 --target-version py311 .
language: system
types: [python]
exclude: ^docs/