We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d7d4c9 commit f6b00b9Copy full SHA for f6b00b9
2 files changed
.gitignore
@@ -8,3 +8,4 @@ terraform/**/.*
8
terraform/**/*.tfvars
9
.direnv/
10
.envrc
11
+.venv/
.pre-commit-config.yaml
@@ -0,0 +1,20 @@
1
+---
2
+repos:
3
+ - repo: https://github.com/dadav/helm-schema
4
+ rev: 0.18.1
5
+ hooks:
6
+ - id: helm-schema
7
+ # for all available options: helm-schema -h
+ args:
+ # directory to search recursively within for charts
+ - --chart-search-root=charts
+
12
+ # don't analyze dependencies
13
+ - --no-dependencies
14
15
+ # add references to values file if not exist
16
+ - --add-schema-reference
17
18
+ # list of fields to skip from being created by default
19
+ # e.g. generate a relatively permissive schema
20
+ # - "--skip-auto-generation=required,additionalProperties"
0 commit comments