Use list-different option for js prettier

This commit is contained in:
George Drummond 2019-05-02 13:41:01 -04:00
parent 69ab412fcb
commit f3a6bf9c47
No known key found for this signature in database
GPG Key ID: 296DD6077123BF17

View File

@ -4,9 +4,9 @@ FILES_TO_FORMAT="atst/ tests/ app.py script/"
if [ "$1" == "check" ]; then
pipenv run black --check ${FILES_TO_FORMAT}
yarn run prettier --check "js/**/*.js" --config ./prettier.config.json
yarn run prettier --list-different "js/**/*.js" --config ./prettier.config.json
else
pipenv run black ${FILES_TO_FORMAT}
yarn run prettier --write "js/**/*.js" --config ./prettier.config.json
yarn run prettier --list-different --write "js/**/*.js" --config ./prettier.config.json
sass-convert ./styles --in-place --recursive --from scss --to scss --quiet
fi