gnome-shell-teatime/beautify-code.sh

13 lines
186 B
Bash
Raw Normal View History

#!/bin/sh
SRC_DIR=$(dirname $0)
echo $SRC_DIR
for fn in "${SRC_DIR}"/src/*.js ; do
2021-09-12 17:30:38 +00:00
js-beautify --replace \
--indent-with-tabs \
--end-with-newline \
--jslint-happy \
$fn
done