From 5996631e093d14e89117f5a996d4774333852339 Mon Sep 17 00:00:00 2001 From: Geoff Boeing Date: Sun, 24 Dec 2023 00:32:15 -0700 Subject: [PATCH] simplify pre-commit config --- .pre-commit-config.yaml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6a02f5113..28f529c6f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -29,16 +29,15 @@ repos: - id: prettier types_or: [markdown, yaml] - - repo: https://github.com/pre-commit/mirrors-mypy - rev: "v1.8.0" - hooks: - - id: mypy - additional_dependencies: [types-requests] - args: [--ignore-missing-imports] - - repo: https://github.com/astral-sh/ruff-pre-commit rev: "v0.1.9" hooks: - id: ruff args: [--fix] - id: ruff-format + + - repo: https://github.com/pre-commit/mirrors-mypy + rev: "v1.8.0" + hooks: + - id: mypy + additional_dependencies: [types-requests]