From b91d303a44d9e6f4da1b39e089e9e3a79b469359 Mon Sep 17 00:00:00 2001 From: Varac <varac@varac.net> Date: Thu, 25 Aug 2022 16:34:49 +0200 Subject: [PATCH] Add helmlint pre-commit and default hooks --- .pre-commit-config.yaml | 17 +++++++++++++++++ 1 file changed, 17 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 00000000..4a43d30d --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,17 @@ +# https://pre-commit.com/ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.3.0 + hooks: + - id: check-added-large-files + - id: check-ast + - id: check-merge-conflict + - id: detect-private-key + - id: end-of-file-fixer + - id: trailing-whitespace + - id: debug-statements + + - repo: https://github.com/gruntwork-io/pre-commit + rev: v0.1.17 + hooks: + - id: helmlint -- GitLab