2021-08-16 13:20:27 +02:00
|
|
|
.PHONY: setup
|
|
|
|
|
|
|
|
SHELL = bash
|
|
|
|
|
|
|
|
all: setup
|
|
|
|
|
|
|
|
setup:
|
|
|
|
command -v pre-commit > /dev/null && pre-commit install
|
|
|
|
|
|
|
|
# https://google.github.io/styleguide/shellguide.html
|
|
|
|
shell-format:
|
|
|
|
shfmt -f . | xargs shfmt -i 2 -ci -sr -kp -w
|
|
|
|
|
|
|
|
shell-check:
|
|
|
|
shfmt -f . | xargs shfmt -i 2 -ci -sr -kp -d
|
2021-08-16 14:04:15 +02:00
|
|
|
shfmt -f . | xargs shellcheck --color=always || true
|