diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index dea424ee..571e1c1c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -56,7 +56,7 @@ repos: # Python linting and formatting 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"] @@ -88,8 +88,8 @@ repos: types_or: [c++, c, cuda] # Format configuration files with prettier - - repo: https://github.com/pre-commit/mirrors-prettier - rev: v4.0.0-alpha.8 + - repo: https://github.com/rbubley/mirrors-prettier + rev: v3.3.3 hooks: - id: prettier types_or: [yaml, markdown, html, css, scss, javascript, json] diff --git a/pyproject.toml b/pyproject.toml index 8027a893..bb22ff92 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -257,6 +257,12 @@ isort.required-imports = ["from __future__ import annotations"] convention = "google" +[tool.repo-review] +ignore = [ + "PC180", # "Uses prettier" -> switched to different prettier-mirror that is not recognized by the check +] + + [tool.cibuildwheel] build = "cp3*" skip = "*-musllinux_*"