Skip to content

Commit

Permalink
Merge pull request rook#15322 from obnoxxx/build-add-make-lint
Browse files Browse the repository at this point in the history
Build: add make lint
  • Loading branch information
travisn authored Jan 28, 2025
2 parents bcb1db3 + c3ed3fc commit 7031e92
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,12 @@ fmt: ## Check formatting of go sources.
yamllint:
yamllint -c .yamllint deploy/examples/ --no-warnings

.PHONY: lint
lint: yamllint pylint shellcheck vet ## Run various linters

.PHONY: pylint
pylint:
pylint $(shell find $(ROOT_DIR) -name '*.py') -E
pylint $(shell find $(ROOT_DIR) -name '*.py') -E

.PHONY: shellcheck
shellcheck:
Expand Down

0 comments on commit 7031e92

Please sign in to comment.