mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
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:
parent
51bcfb5a44
commit
ee719c23d4
Notes:
sideshowbarker
2024-07-19 00:33:06 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/ee719c23d49 Pull-request: https://github.com/SerenityOS/serenity/pull/4570
2 changed files with 39 additions and 0 deletions
1
.prettierignore
Normal file
1
.prettierignore
Normal file
|
@ -0,0 +1 @@
|
|||
Base/home/anon/Source/js
|
38
Meta/lint-prettier.sh
Executable file
38
Meta/lint-prettier.sh
Executable 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
|
Loading…
Reference in a new issue