FEATURE: Use long options

This commit is contained in:
Olaf Leidinger 2021-09-12 19:30:38 +02:00
parent e6d59a4095
commit 9d1e631ec2

View File

@ -4,5 +4,9 @@ SRC_DIR=$(dirname $0)
echo $SRC_DIR echo $SRC_DIR
for fn in "${SRC_DIR}"/src/*.js ; do for fn in "${SRC_DIR}"/src/*.js ; do
js-beautify -t -n -r -j $fn js-beautify --replace \
--indent-with-tabs \
--end-with-newline \
--jslint-happy \
$fn
done done