From 260b63d582a1bbc5d9686b7121d316f47d8a429b Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Fri, 23 Aug 2024 11:47:05 +0200 Subject: [PATCH] add `check-jsonschema` pre-commit hook (#1172) --- .pre-commit-config.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1a0d06a1..91cea775 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,8 +16,14 @@ repos: - id: ruff args: [--fix] - id: ruff-format -- repo: https://github.com/adrienverge/yamllint.git +- repo: https://github.com/adrienverge/yamllint rev: v1.35.1 hooks: - id: yamllint args: [--strict] +- repo: https://github.com/python-jsonschema/check-jsonschema + rev: 0.29.2 + hooks: + - id: check-dependabot + - id: check-github-workflows + - id: check-readthedocs