chore(deps): update pre-commit hooks (#5745)

* chore(deps): update pre-commit hooks

updates:
- [github.com/pre-commit/mirrors-clang-format: v20.1.5 → v20.1.7](https://github.com/pre-commit/mirrors-clang-format/compare/v20.1.5...v20.1.7)
- [github.com/astral-sh/ruff-pre-commit: v0.11.12 → v0.12.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.11.12...v0.12.2)
- [github.com/pre-commit/mirrors-mypy: v1.16.0 → v1.16.1](https://github.com/pre-commit/mirrors-mypy/compare/v1.16.0...v1.16.1)
- [github.com/python-jsonschema/check-jsonschema: 0.33.0 → 0.33.2](https://github.com/python-jsonschema/check-jsonschema/compare/0.33.0...0.33.2)

* chore: fix new ruff check warnings

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>

* style: pre-commit fixes

---------

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Henry Schreiner <henryschreineriii@gmail.com>
This commit is contained in:
pre-commit-ci[bot]
2025-07-11 15:36:38 -07:00
committed by GitHub
parent 66d394f259
commit cc69a3789c
5 changed files with 27 additions and 16 deletions

View File

@@ -143,9 +143,6 @@ messages_control.disable = [
"consider-using-f-string", # triggers in _version.py incorrectly
]
[tool.ruff]
src = ["src"]
[tool.ruff.lint]
extend-select = [
"B", # flake8-bugbear
@@ -166,17 +163,21 @@ extend-select = [
"YTT", # flake8-2020
]
ignore = [
"PLR", # Design related pylint
"PT011", # Too broad with raises in pytest
"SIM118", # iter(x) is not always the same as iter(x.keys())
"PLR", # Design related pylint
"PT011", # Too broad with raises in pytest
"SIM118", # iter(x) is not always the same as iter(x.keys())
"PLC0415", # We import in functions for various reasons
]
unfixable = ["T20"]
isort.known-first-party = ["env", "pybind11_cross_module_tests", "pybind11_tests"]
isort.required-imports = ["from __future__ import annotations"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["EM", "N", "E721"]
"tests/**" = [
"EM",
"N",
"E721",
]
"tests/test_call_policies.py" = ["PLC1901"]
[tool.repo-review]