From d69d76b5486f0fe31413eff2296d59e558496036 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Fri, 9 Oct 2020 20:27:20 -0500 Subject: [PATCH] use double-quotes on eslint glob It doesn't work on Windows with single quotes. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 581bec23..8f08b2da 100644 --- a/package.json +++ b/package.json @@ -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"