forked from catalin/fukuops
22 lines
351 B
Makefile
22 lines
351 B
Makefile
lint--pre-commit:
|
|
pre-commit run --all-files --color always
|
|
|
|
lint--kubeconform:
|
|
kubeconform -strict -ignore-missing-schemas k8s/
|
|
|
|
lint--kubescore:
|
|
kube-score score k8s/**.yaml
|
|
|
|
lint--tflint:
|
|
tflint --recursive
|
|
|
|
lint--scripts:
|
|
shellcheck scripts/**.sh
|
|
|
|
|
|
|
|
lint:
|
|
make lint--pre-commit
|
|
make lint--kubeconform
|
|
make lint--tflint
|
|
make lint--scripts
|