mirror of https://github.com/keeweb/keeweb
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
335 B
Bash
17 lines
335 B
Bash
#!/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'
|