Permalink
Cannot retrieve contributors at this time
20 lines (18 sloc)
690 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
kube-linter/.pre-commit-hooks.yaml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- id: kube-linter | |
name: KubeLinter | |
description: This hook installs (using Go) and runs the KubeLinter utility to lint Helm charts and Kubernetes YAML files. | |
entry: kube-linter lint | |
language: golang | |
types: [yaml] | |
- id: kube-linter-system | |
name: KubeLinter System | |
description: This hook runs the KubeLinter utility that exists already on the system to lint Helm charts and Kubernetes YAML files. | |
entry: kube-linter lint | |
language: system | |
types: [yaml] | |
- id: kube-linter-docker | |
name: KubeLinter Docker | |
description: This hook runs kube-linter using the project's official docker image | |
language: docker_image | |
types: [yaml] | |
entry: stackrox/kube-linter:0.6.3 lint |