diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 722c346..117200c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -22,32 +22,33 @@ repos: - repo: local hooks: - - id: mypy - name: mypy - entry: poetry run mypy + - id: isort + name: isort + entry: poetry run isort language: system types: [python] - repo: local hooks: - - id: isort - name: isort - entry: poetry run isort + - id: black + name: black + entry: poetry run black language: system types: [python] - repo: local hooks: - - id: flake8 - name: flake8 - entry: poetry run flake8 + - id: mypy + name: mypy + entry: poetry run mypy language: system types: [python] + - repo: local hooks: - - id: black - name: black - entry: poetry run black + - id: flake8 + name: flake8 + entry: poetry run flake8 language: system types: [python]