Meta: Add lint-prettier.sh

This is a script similar to the clang-format one to ensure prettier
formatting of most JavaScript files.
This commit is contained in:
Linus Groh 2020-12-27 15:36:04 +01:00 committed by Andreas Kling
parent 51bcfb5a44
commit ee719c23d4
Notes: sideshowbarker 2024-07-19 00:33:06 +09:00
2 changed files with 39 additions and 0 deletions

1
.prettierignore Normal file
View file

@ -0,0 +1 @@
Base/home/anon/Source/js

38
Meta/lint-prettier.sh Executable file
View file

@ -0,0 +1,38 @@
#!/bin/bash
set -e
script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
cd "${script_path}/.." || exit 1
if ! command -v prettier >/dev/null 2>&1 ; then
echo "prettier is not available. Either skip this script, or install prettier."
exit 1
fi
if ! prettier --version | grep -qF '2.' ; then
echo "You are using '$(prettier --version)', which appears to not be prettier 2."
exit 1
fi
if [ "$#" -eq "0" ]; then
mapfile -t files < <(
git ls-files \
--exclude-from .prettierignore \
-- \
'*.js'
)
else
files=()
for file in "$@"; do
if [[ "${file}" == *".js" ]]; then
files+=("${file}")
fi
done
fi
if (( ${#files[@]} )); then
prettier --check "${files[@]}"
else
echo "No .js files to check."
fi