From 4b9a0d9431711e0db8290a0de138b8ef79051dc8 Mon Sep 17 00:00:00 2001 From: Varun Chandak Date: Fri, 25 Aug 2023 13:03:17 +0530 Subject: [PATCH] Add .pre-commit-config.yaml --- .pre-commit-config.yaml | 9 +++++++++ 1 file changed, 9 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..ba1f559 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,9 @@ +repos: +- repo: local + hooks: + - id: trufflehog + name: TruffleHog + description: Detect secrets in your data. + entry: bash -c 'trufflehog git file://. --since-commit HEAD --only-verified --fail' + language: system + stages: ["commit", "push"]