default_language_version: python: python3.9 repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v3.4.0 hooks: - id: check-yaml - id: end-of-file-fixer - id: trailing-whitespace - repo: local hooks: - id: isort name: isort entry: poetry run isort --settings-path pyproject.toml types: [python] language: system - id: black name: black entry: poetry run black --config pyproject.toml types: [python] language: system