From 8636f5044dc40d41f44b5895a3c784ad9170c53c Mon Sep 17 00:00:00 2001 From: Andrew Erickson Date: Mon, 29 Jul 2024 16:21:32 -0700 Subject: [PATCH] add a pre-commit hook file --- .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..4fea489 --- /dev/null +++ b/.pre-commit-hooks.yaml @@ -0,0 +1,10 @@ +- id: tfas + name: tfas + description: "Run 'tfas' for authoritative Terraform module linting" + entry: tfas + language: python + files: .tf$ + args: [] + require_serial: true + additional_dependencies: [] + minimum_pre_commit_version: "2.9.2"