ci: make pre-commit oss compatible (#841)

Co-authored-by: Charles Packer <packercharles@gmail.com>
This commit is contained in:
cthomas
2025-01-31 09:09:29 -08:00
committed by GitHub
parent 129cf4a36a
commit e37d41d318

View File

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