/
underluns
/
terminalis
Обзор
Документация
Войти
/
underluns
/
terminalis
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
makefiles/shell.mk
13 строк
356 B
underluns
Fix shell checks
03 окт 2025, 09:32
Не верифицирован
03 окт 2025, 09:32
1312f80
Код
Авторство
О чём код?
.PHONY: shell_install shell_install: asdf plugin add shfmt && asdf install shfmt asdf plugin add shellcheck && asdf install shellcheck .PHONY: shell_format shell_format: shfmt --version && shfmt --list --write . .PHONY: shell_lint shell_lint: shfmt --version && shfmt --diff . shellcheck --version && shellcheck $(shell find . -type f -name '*.sh')