From 5bb45ca9597c9cd712d3299d37b00f97bafcb578 Mon Sep 17 00:00:00 2001 From: Dominik Date: Thu, 11 Dec 2025 15:48:24 +0100 Subject: [PATCH] Pre commit to check json validity --- .pre-commit-config.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .pre-commit-config.yaml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..e5dfdc0 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,8 @@ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v5.0.0 + hooks: + - id: check-json + name: Check if JSON is valid + files: ^data/.*\.json$ +