1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-25 07:37:46 +02:00
keeweb/util/prettier.sh
2020-06-03 21:31:32 +02:00

17 lines
335 B
Bash
Executable File

#!/bin/sh
./node_modules/.bin/prettier --write \
'app/**/*.js' \
'app/**/*.scss' \
'app/**/*.json' \
'app/**/*.html' \
'build/**/*.js' \
'desktop/**/*.js' \
'plugins/**/*.js' \
'util/**/*.js' \
'*.js' \
'package.json' \
'!app/lib/*.js' \
'!app/scripts/locales/de-DE.json' \
'!app/scripts/locales/fr-FR.json'