keeweb/util/prettier.sh

17 lines
335 B
Bash
Raw Normal View History

2020-06-03 21:31:32 +02:00
#!/bin/sh
2019-08-18 08:10:45 +02:00
./node_modules/.bin/prettier --write \
2019-08-18 08:05:38 +02:00
'app/**/*.js' \
'app/**/*.scss' \
'app/**/*.json' \
'app/**/*.html' \
'build/**/*.js' \
'desktop/**/*.js' \
'plugins/**/*.js' \
'util/**/*.js' \
'*.js' \
2019-09-09 17:07:24 +02:00
'package.json' \
2019-09-13 23:25:57 +02:00
'!app/lib/*.js' \
2019-09-09 17:07:24 +02:00
'!app/scripts/locales/de-DE.json' \
'!app/scripts/locales/fr-FR.json'