fix: cleanup of plugins as per test_plugins (#759)

This commit is contained in:
James Hegedus
2023-02-17 02:29:03 +11:00
committed by GitHub
parent e4febaf71a
commit 3fff20a073
13 changed files with 41 additions and 27 deletions

View File

@@ -2,10 +2,18 @@
set -euo pipefail
printf "* %s\n\n" "Formatting shell scripts..."
# format Shell scripts in scripts/ directory.
shfmt --language-dialect bash --find \
./scripts/*
shfmt --language-dialect bash --indent 2 --write \
./scripts/*
printf "\n* %s\n\n" "Formatting markdown..."
# format Markdown files.
npx -y prettier --write \
./**/*.md
printf "\n* %s\n" "Formatting complete!"