Skip to content

Commit

Permalink
chore(pre-commit): autoupdate ⬆️
Browse files Browse the repository at this point in the history
TIP: you can trigger a re-run on a pull request by commenting `pre-commit.ci run` (must appear on a line by itself)


updates:
- [github.com/alessandrojcm/commitlint-pre-commit-hook: v9.4.0 → v9.5.0](alessandrojcm/commitlint-pre-commit-hook@v9.4.0...v9.5.0)
- [github.com/pre-commit/mirrors-prettier: v3.0.0-alpha.6 → v3.0.3](pre-commit/mirrors-prettier@v3.0.0-alpha.6...v3.0.3)
- [github.com/adrienverge/yamllint: v1.30.0 → v1.32.0](adrienverge/yamllint@v1.30.0...v1.32.0)
- [github.com/asottile/pyupgrade: v3.3.1 → v3.14.0](asottile/pyupgrade@v3.3.1...v3.14.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/pre-commit/mirrors-mypy: v1.1.1 → v1.5.1](pre-commit/mirrors-mypy@v1.1.1...v1.5.1)
- [github.com/psf/black: 23.3.0 → 23.9.1](psf/black@23.3.0...23.9.1)
- https://github.com/asottile/reorder_python_importshttps://github.com/asottile/reorder-python-imports
- [github.com/asottile/reorder-python-imports: v3.9.0 → v3.12.0](asottile/reorder-python-imports@v3.9.0...v3.12.0)
- [github.com/PyCQA/docformatter: v1.5.1 → v1.7.5](PyCQA/docformatter@v1.5.1...v1.7.5)
- [github.com/pycqa/flake8: 6.0.0 → 6.1.0](PyCQA/flake8@6.0.0...6.1.0)
  • Loading branch information
pre-commit-ci[bot] authored Oct 3, 2023
1 parent 84c0ff4 commit 13c8d26
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
repos:
### GENERAL ###
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
rev: v9.4.0
rev: v9.5.0
hooks:
- id: commitlint
stages: [commit-msg]
Expand Down Expand Up @@ -34,19 +34,19 @@ repos:
# opinionated code formatter for all things frontend (also includes Markdown, JSON, YAML)
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.0-alpha.6
rev: v3.0.3
hooks:
- id: prettier

- repo: https://github.com/adrienverge/yamllint
rev: v1.30.0
rev: v1.32.0
hooks:
- id: yamllint
args: [-c=.yamllint]

### PYTHON ###
- repo: https://github.com/asottile/pyupgrade
rev: v3.3.1
rev: v3.14.0
hooks:
- id: pyupgrade
args: [--py37-plus]
Expand All @@ -62,32 +62,32 @@ repos:
- id: requirements-txt-fixer

- 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/pre-commit/mirrors-mypy
rev: v1.1.1
rev: v1.5.1
hooks:
- id: mypy
additional_dependencies: ["attrs>=21.0,<22", "types-PyYAML"] # as per setup.cfg

# the uncompromising (opinionated / barely configurable) PEP8 Python code formatter.
- repo: https://github.com/psf/black
rev: "23.3.0"
rev: "23.9.1"
hooks:
- id: black

# isort alternative
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.9.0
- repo: https://github.com/asottile/reorder-python-imports
rev: v3.12.0
hooks:
- id: reorder-python-imports
args: [--py37-plus, --add-import, "from __future__ import annotations"]

# formats docstrings to follow PEP 257.
- repo: https://github.com/PyCQA/docformatter
rev: v1.5.1
rev: v1.7.5
hooks:
- id: docformatter
args: [--in-place]
Expand All @@ -99,7 +99,7 @@ repos:
# some third-party plugins
# …to check the style and quality of python code.
- repo: https://github.com/pycqa/flake8
rev: "6.0.0"
rev: "6.1.0"
hooks:
- id: flake8

Expand Down

0 comments on commit 13c8d26

Please sign in to comment.