From f82aacea2836012b3f543dc384fa743a2dcd5ef3 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 17 Nov 2025 21:59:54 -0500 Subject: [PATCH] chore: reorder mypy check Signed-off-by: Henry Schreiner --- .pre-commit-config.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0a1141ea6..0f99ad5cb 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,14 +8,6 @@ repos: - id: mixed-line-ending - id: trailing-whitespace - - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.18.1 - hooks: - - id: mypy - exclude: '^(docs|tasks|tests)|setup\.py' - args: [] - additional_dependencies: [pyparsing, nox, orjson] - - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.13.0 hooks: @@ -30,6 +22,14 @@ repos: - id: rst-directive-colons - id: rst-inline-touching-normal + - repo: https://github.com/pre-commit/mirrors-mypy + rev: v1.18.1 + hooks: + - id: mypy + exclude: '^(docs|tasks|tests)|setup\.py' + args: [] + additional_dependencies: [pyparsing, nox, orjson] + - repo: https://github.com/codespell-project/codespell rev: "v2.4.1" hooks: