Merge pull request #82 from percona/PMM-7-merge-commit

PMM-7 merge commit
This commit is contained in:
Nurlan Moldomurov 2022-10-17 11:35:33 -03:00 committed by GitHub
commit e02ea57b91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -159,6 +159,15 @@ ifdef GOLANGCI_LINT
$(GOLANGCI_LINT) run $(GOLANGCI_LINT_OPTS) $(pkgs)
endif
.PHONY: common-yamllint
common-yamllint:
@echo ">> running yamllint on all YAML files in the repository"
ifeq (, $(shell which yamllint))
@echo "yamllint not installed so skipping"
else
yamllint .
endif
# For backward-compatibility.
.PHONY: common-staticcheck
common-staticcheck: lint