diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index bba2cbd..b98ff52 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -26,7 +26,7 @@ repos: fail_fast: true - id: debug-statements - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.12.2 + rev: v0.12.5 hooks: - id: ruff-check args: [--fix, --exit-non-zero-on-fix] @@ -38,7 +38,7 @@ repos: - id: codespell additional_dependencies: [".[toml]"] - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.16.1 + rev: v1.17.0 hooks: - id: mypy exclude: | diff --git a/pyproject.toml b/pyproject.toml index 7db6dab..6180e8b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -95,7 +95,11 @@ warn_unused_ignores = true main.py-version = "3.8" basic.good-names = ["x", "y", "dx", "dy", "p", "s", "fg", "bg", "n", "ui", "tx", "rx"] format.max-line-length = 120 -"messages control".disable = ["consider-using-f-string", "duplicate-code", "wrong-import-order"] +messages-control.disable = [ + "consider-using-f-string", + "duplicate-code", + "wrong-import-order", +] spelling.spelling-dict = "en_US" spelling.spelling-private-dict-file = "docs/source/spelling_wordlist.txt"