use double-quotes on eslint glob

It doesn't work on Windows with single quotes.
This commit is contained in:
David Lechner
2020-10-09 20:41:52 -05:00
committed by David Lechner
parent 4922f4e82e
commit d69d76b548
+1 -1
View File
@@ -47,7 +47,7 @@
"coverage": "react-scripts test --env=./test/env.js --coverage --watchAll=false",
"coverage:html": "yarn coverage --coverageReporters html",
"eject": "react-scripts eject",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
"lint": "tsc --noEmit && eslint \"*/**/*.{js,ts,tsx}\" --quiet --fix"
},
"eslintConfig": {
"extends": "react-app"