Skip to content

Commit

Permalink
Meta: Add lint-prettier.sh
Browse files Browse the repository at this point in the history
This is a script similar to the clang-format one to ensure prettier
formatting of most JavaScript files.
  • Loading branch information
linusg authored and awesomekling committed Dec 27, 2020
1 parent 51bcfb5 commit ee719c2
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Base/home/anon/Source/js
38 changes: 38 additions & 0 deletions Meta/lint-prettier.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ee719c2

Please sign in to comment.