This commit is contained in:
Morten Olsen
2025-11-25 15:11:52 +01:00
commit 316a2db1d9
19 changed files with 806 additions and 0 deletions

25
.pre-commit-config.yaml Normal file
View File

@@ -0,0 +1,25 @@
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: check-json
- id: check-merge-conflict
- id: detect-private-key
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.33.0
hooks:
- id: yamllint
args: [-c=.yamllint]
- repo: https://github.com/instrumenta/kubeval
rev: 0.16.1
hooks:
- id: kubeval
args: [--strict, --ignore-missing-schemas]