Skip to content

Commit

Permalink
chore: update pre-commit hooks
Browse files Browse the repository at this point in the history
updates:
- [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v5.0.0](pre-commit/pre-commit-hooks@v4.4.0...v5.0.0)
- [github.com/asottile/setup-cfg-fmt: v2.2.0 → v2.5.0](asottile/setup-cfg-fmt@v2.2.0...v2.5.0)
- [github.com/PyCQA/isort: 5.12.0 → 5.13.2](PyCQA/isort@5.12.0...5.13.2)
- [github.com/asottile/pyupgrade: v3.3.1 → v3.17.0](asottile/pyupgrade@v3.3.1...v3.17.0)
- [github.com/psf/black: 23.3.0 → 24.8.0](psf/black@23.3.0...24.8.0)
- [github.com/pre-commit/mirrors-mypy: v1.1.1 → v1.11.2](pre-commit/mirrors-mypy@v1.1.1...v1.11.2)
- [github.com/hadialqattan/pycln: v2.1.3 → v2.4.0](hadialqattan/pycln@v2.1.3...v2.4.0)
- [github.com/PyCQA/flake8: 6.0.0 → 7.1.1](PyCQA/flake8@6.0.0...7.1.1)
- [github.com/kynan/nbstripout: 0.6.1 → 0.7.1](kynan/nbstripout@0.6.1...0.7.1)
- [github.com/codespell-project/codespell: v2.2.4 → v2.3.0](codespell-project/codespell@v2.2.4...v2.3.0)
- [github.com/shellcheck-py/shellcheck-py: v0.9.0.2 → v0.10.0.1](shellcheck-py/shellcheck-py@v0.9.0.2...v0.10.0.1)
- [github.com/pre-commit/mirrors-prettier: v3.0.0-alpha.6 → v4.0.0-alpha.8](pre-commit/mirrors-prettier@v3.0.0-alpha.6...v4.0.0-alpha.8)
  • Loading branch information
pre-commit-ci[bot] authored Oct 7, 2024
1 parent fec869c commit 55744a9
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.4.0"
rev: "v5.0.0"
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -24,41 +24,41 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/asottile/setup-cfg-fmt
rev: "v2.2.0"
rev: "v2.5.0"
hooks:
- id: setup-cfg-fmt

- repo: https://github.com/PyCQA/isort
rev: "5.12.0"
rev: "5.13.2"
hooks:
- id: isort

- repo: https://github.com/asottile/pyupgrade
rev: "v3.3.1"
rev: "v3.17.0"
hooks:
- id: pyupgrade
args: ["--py36-plus"]

- repo: https://github.com/psf/black
rev: "23.3.0"
rev: "24.8.0"
hooks:
- id: black

- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.1.1"
rev: "v1.11.2"
hooks:
- id: mypy
files: src
stages: [manual]

- repo: https://github.com/hadialqattan/pycln
rev: "v2.1.3"
rev: "v2.4.0"
hooks:
- id: pycln
args: ["--all"]

- repo: https://github.com/PyCQA/flake8
rev: "6.0.0"
rev: "7.1.1"
hooks:
- id: flake8
additional_dependencies: [
Expand All @@ -70,7 +70,7 @@ repos:
args: ["--docstring-convention", "numpy"] # or google, change me

- repo: https://github.com/kynan/nbstripout
rev: "0.6.1"
rev: "0.7.1"
hooks:
- id: nbstripout
args: ["--strip-empty-cells",
Expand All @@ -83,13 +83,13 @@ repos:
stages: [manual]

- repo: https://github.com/codespell-project/codespell
rev: "v2.2.4"
rev: "v2.3.0"
hooks:
- id: codespell
args: ["-L", "nd,unparseable,compiletime"]

- repo: https://github.com/shellcheck-py/shellcheck-py
rev: "v0.9.0.2"
rev: "v0.10.0.1"
hooks:
- id: shellcheck

Expand All @@ -102,7 +102,7 @@ repos:
- id: rst-inline-touching-normal

- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v3.0.0-alpha.6"
rev: "v4.0.0-alpha.8"
hooks:
- id: prettier
types_or: [json]

0 comments on commit 55744a9

Please sign in to comment.