2021-01-22 16:44:05 +00:00
|
|
|
#!/usr/bin/env bash
|
2020-12-27 14:36:04 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
|
|
|
|
cd "${script_path}/.." || exit 1
|
|
|
|
|
|
|
|
if [ "$#" -eq "0" ]; then
|
2024-07-16 11:41:50 +00:00
|
|
|
files=()
|
|
|
|
while IFS= read -r file; do
|
|
|
|
files+=("$file")
|
|
|
|
done < <(
|
2020-12-27 14:36:04 +00:00
|
|
|
git ls-files \
|
|
|
|
--exclude-from .prettierignore \
|
|
|
|
-- \
|
2022-01-18 18:39:36 +00:00
|
|
|
'*.js' '*.mjs'
|
2020-12-27 14:36:04 +00:00
|
|
|
)
|
|
|
|
else
|
|
|
|
files=()
|
|
|
|
for file in "$@"; do
|
2022-01-18 18:39:36 +00:00
|
|
|
if [[ "${file}" == *".js" ]] || [[ "${file}" == *".mjs" ]]; then
|
2020-12-27 14:36:04 +00:00
|
|
|
files+=("${file}")
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
if (( ${#files[@]} )); then
|
2021-01-10 07:20:21 +00:00
|
|
|
if ! command -v prettier >/dev/null 2>&1 ; then
|
|
|
|
echo "prettier is not available, but JS files need linting! Either skip this script, or install prettier."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2024-11-06 17:05:09 +00:00
|
|
|
if ! prettier --version | grep -q '\b3\.' ; then
|
|
|
|
echo "You are using '$(prettier --version)', which appears to not be prettier 3."
|
2021-01-10 07:20:21 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2020-12-27 14:36:04 +00:00
|
|
|
prettier --check "${files[@]}"
|
|
|
|
else
|
2022-01-18 18:39:36 +00:00
|
|
|
echo "No .js or .mjs files to check."
|
2020-12-27 14:36:04 +00:00
|
|
|
fi
|