diff options
author | 2024-12-14 18:39:05 -0800 | |
---|---|---|
committer | 2024-12-14 18:39:05 -0800 | |
commit | 28f902b2722deb1a78635c0a6a141ca31fffc14b (patch) | |
tree | dabcbe54e2552c3aba42304d2e33f5093db3effe | |
parent | 7cc332b64cf59aa46ed785e22ac0056f5f8030ff (diff) | |
parent | 2ead1a1505fd5071f245a7029aae178731aef1ae (diff) | |
download | helm-charts-28f902b2722deb1a78635c0a6a141ca31fffc14b.tar.gz helm-charts-28f902b2722deb1a78635c0a6a141ca31fffc14b.tar.zst helm-charts-28f902b2722deb1a78635c0a6a141ca31fffc14b.zip |
Merge pull request #3 from ansg191/pre-commit
Add pre-commit
-rw-r--r-- | .pre-commit-config.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..c72a563 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,16 @@ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v5.0.0 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: check-added-large-files + - id: check-case-conflict + - id: check-merge-conflict + - id: check-symlinks + - id: forbid-submodules + - id: mixed-line-ending + - repo: https://github.com/norwoodj/helm-docs + rev: v1.14.2 + hooks: + - id: helm-docs |