mirror of
https://github.com/jlengrand/asdf-php.git
synced 2026-03-10 08:01:22 +00:00
15 lines
260 B
Makefile
15 lines
260 B
Makefile
SH_SRCFILES = $(shell git ls-files "bin/*")
|
|
SHFMT_BASE_FLAGS = -s -i 2 -ci
|
|
|
|
fmt:
|
|
shfmt -w $(SHFMT_BASE_FLAGS) $(SH_SRCFILES)
|
|
.PHONY: fmt
|
|
|
|
fmt-check:
|
|
shfmt -d $(SHFMT_BASE_FLAGS) $(SH_SRCFILES)
|
|
.PHONY: fmt-check
|
|
|
|
lint:
|
|
shellcheck $(SH_SRCFILES)
|
|
.PHONY: lint
|