From ad1ea0f87c972fdfe64ee39053944d1bb2cf4ade Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Tue, 22 Jul 2025 00:56:00 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=AA=20Add=20`pygrep-hooks`=20to=20pre-?= =?UTF-8?q?commit=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .pre-commit-config.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 2af815e..8a56d27 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -45,4 +45,13 @@ repos: - yaml - id: check-readthedocs +- repo: https://github.com/pre-commit/pygrep-hooks.git + rev: v1.10.0 + hooks: + - id: python-check-blanket-noqa + - id: python-check-mock-methods + - id: python-no-eval + - id: python-no-log-warn + - id: rst-backticks + ...