mirror of
https://github.com/placeholder-soft/asdf-plugins.git
synced 2026-03-27 22:47:16 +08:00
16 lines
344 B
Bash
Executable File
16 lines
344 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
# check format Shell scripts in scripts/ directory.
|
|
shfmt --language-dialect bash --indent 2 --diff \
|
|
./scripts/*
|
|
|
|
# check format Markdown files.
|
|
npx -y prettier --check \
|
|
./**/*.md
|
|
|
|
# lint for errors in Shell scripts in scripts/ directory.
|
|
shellcheck --shell bash --external-sources \
|
|
./scripts/*
|