diff options
author | 2024-12-14 18:37:58 -0800 | |
---|---|---|
committer | 2024-12-14 18:37:58 -0800 | |
commit | 2ead1a1505fd5071f245a7029aae178731aef1ae (patch) | |
tree | cb99b1516b8341dafe21131a567efc2791904682 | |
parent | d09f2069b49e61303f75f7c6cbd54a7aed26ec36 (diff) | |
download | helm-charts-2ead1a1505fd5071f245a7029aae178731aef1ae.tar.gz helm-charts-2ead1a1505fd5071f245a7029aae178731aef1ae.tar.zst helm-charts-2ead1a1505fd5071f245a7029aae178731aef1ae.zip |
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 |