1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Remove unnecessary check for files to be linted and combine ts & tsx lint staged command (#6145)

This commit is contained in:
damian 2019-01-26 22:44:44 +01:00 committed by Tim Neutkens
parent 22a57e493a
commit ca39752bc6

View file

@ -32,12 +32,8 @@
"standard --fix",
"git add"
],
"*.ts": [
"tslint -c tslint.json 'packages/**/*.ts' --fix",
"git add"
],
"*.tsx": [
"tslint -c tslint.json 'packages/**/*.ts' --fix",
"*.{ts,tsx}": [
"tslint -c tslint.json --fix",
"git add"
],
"packages/**/bin/*": [