diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9aa3ac692..422f0c37f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -58,7 +58,7 @@ repos: # Python linting using ruff - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.5.4 + rev: v0.5.5 hooks: - id: ruff args: ["--fix", "--show-fixes"] @@ -101,15 +101,15 @@ repos: files: (\.cmake|CMakeLists.txt)(.in)?$ # Format configuration files with prettier - - repo: https://github.com/pre-commit/mirrors-prettier - rev: v3.1.0 + - repo: https://github.com/rbubley/mirrors-prettier + rev: v3.3.3 hooks: - id: prettier types_or: [yaml, markdown, html, css, scss, javascript, json] # Check for spelling - repo: https://github.com/crate-ci/typos - rev: v1.23.2 + rev: v1.23.5 hooks: - id: typos @@ -131,7 +131,7 @@ repos: # Check JSON schemata - repo: https://github.com/python-jsonschema/check-jsonschema - rev: 0.29.0 + rev: 0.29.1 hooks: - id: check-dependabot - id: check-github-workflows @@ -139,6 +139,6 @@ repos: # Check the pyproject.toml file - repo: https://github.com/henryiii/validate-pyproject-schema-store - rev: 2024.07.01 + rev: 2024.07.29 hooks: - id: validate-pyproject diff --git a/pyproject.toml b/pyproject.toml index 36ffe670f..c3ea274cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -267,7 +267,8 @@ mch = "mch" [tool.repo-review] ignore = [ - "PC160" # "Uses codespell" -> switched to https://github.com/crate-ci/typos + "PC160", # "Uses codespell" -> switched to https://github.com/crate-ci/typos + "PC180", # "Uses prettier" -> switched to different prettier-mirror that is not recognized by the check ]