From 09ba5cd27f31b011d091d983c2abbc17d7ff5f57 Mon Sep 17 00:00:00 2001 From: Keith Harvey Date: Wed, 23 Jul 2025 09:42:25 +0100 Subject: [PATCH] add .pre-commit-hooks.yaml --- .pre-commit-hooks.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .pre-commit-hooks.yaml diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml new file mode 100644 index 0000000..541a7b5 --- /dev/null +++ b/.pre-commit-hooks.yaml @@ -0,0 +1,10 @@ +- id: envars-validate + name: Validate envars configuration + description: Validates envars.yml file + entry: envars + language: python + args: [validate] + files: ^envars\.yml$ + require_serial: true + additional_dependencies: [] + pass_filenames: false