Skip to content

Commit

Permalink
chore: pre-commit autoupdate (#217)
Browse files Browse the repository at this point in the history
* chore: pre-commit autoupdate

updates:
- [github.com/astral-sh/ruff-pre-commit: v0.1.4 → v0.1.6](astral-sh/ruff-pre-commit@v0.1.4...v0.1.6)
- [github.com/pre-commit/mirrors-prettier: v3.0.3 → v4.0.0-alpha.3](pre-commit/mirrors-prettier@v3.0.3...v4.0.0-alpha.3)
- [github.com/psf/black: 23.10.1 → 23.11.0](psf/black@23.10.1...23.11.0)
- [github.com/streetsidesoftware/cspell-cli: v7.3.2 → v8.0.0](streetsidesoftware/cspell-cli@v7.3.2...v8.0.0)
- [github.com/python-jsonschema/check-jsonschema: 0.27.1 → 0.27.2](python-jsonschema/check-jsonschema@0.27.1...0.27.2)
- [github.com/pre-commit/mirrors-mypy: v1.6.1 → v1.7.1](pre-commit/mirrors-mypy@v1.6.1...v1.7.1)

* Update Ruff required-version

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Cristiano Nicolai <[email protected]>
  • Loading branch information
pre-commit-ci[bot] and cristianonicolai authored Dec 5, 2023
1 parent 85a7921 commit f967ece
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ repos:
hooks:
- id: remove-tabs
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.1.4"
rev: "v0.1.6"
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- repo: https://github.com/pre-commit/mirrors-prettier
# keep it before yamllint
rev: v3.0.3
rev: v4.0.0-alpha.3
hooks:
- id: prettier
always_run: true
Expand All @@ -46,17 +46,17 @@ repos:
- prettier-plugin-toml
- prettier-plugin-sort-json
- repo: https://github.com/psf/black
rev: 23.10.1
rev: 23.11.0
hooks:
- id: black
language_version: python3
- repo: https://github.com/streetsidesoftware/cspell-cli
rev: v7.3.2
rev: v8.0.0
hooks:
- id: cspell
name: Spell check with cspell
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.27.1
rev: 0.27.2
hooks:
- id: check-github-workflows
- repo: https://github.com/jsh9/pydoclint
Expand All @@ -75,7 +75,7 @@ repos:
- ansible-core
- pytest
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.6.1
rev: v1.7.1
hooks:
- id: mypy
# Do not modify args to match mypy cli/ide behavior, use config if needed.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ addopts = ["--tb=native"]
markers = ["old", "unit", "requires_ansible_v2"]

[tool.ruff]
required-version = "0.1.4"
required-version = "0.1.6"
select = ["ALL"]
ignore = [
"E501", # we use black
Expand Down

0 comments on commit f967ece

Please sign in to comment.