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.10.0](alessandrojcm/commitlint-pre-commit-hook@v9.4.0...v9.10.0)
- [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v4.5.0](pre-commit/pre-commit-hooks@v4.4.0...v4.5.0)
- [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)
- [github.com/adrienverge/yamllint: v1.30.0 → v1.33.0](adrienverge/yamllint@v1.30.0...v1.33.0)
- [github.com/asottile/pyupgrade: v3.3.1 → v3.15.0](asottile/pyupgrade@v3.3.1...v3.15.0)
- [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v4.5.0](pre-commit/pre-commit-hooks@v4.4.0...v4.5.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.8.0](pre-commit/mirrors-mypy@v1.1.1...v1.8.0)
- [github.com/psf/black: 23.3.0 → 23.12.1](psf/black@23.3.0...23.12.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 Jan 1, 2024
1 parent 84c0ff4 commit 2b0ae8a
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
repos:
### GENERAL ###
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
rev: v9.4.0
rev: v9.10.0
hooks:
- id: commitlint
stages: [commit-msg]
additional_dependencies: ["@commitlint/config-conventional"]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-case-conflict
- id: check-symlinks
Expand All @@ -34,25 +34,25 @@ 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: v4.0.0-alpha.8
hooks:
- id: prettier

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

### PYTHON ###
- repo: https://github.com/asottile/pyupgrade
rev: v3.3.1
rev: v3.15.0
hooks:
- id: pyupgrade
args: [--py37-plus]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-ast
- id: check-builtin-literals
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.8.0
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.12.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 2b0ae8a

Please sign in to comment.