From f92fcb7945dcd019d100bb1089459375b44e4eaf Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Wed, 23 Mar 2022 12:23:35 -0600 Subject: [PATCH] Fix stylelint on Windows (#8132) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b003298f54..ab85c03ea8 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "lint:js": "eslint --max-warnings 0 src test", "lint:js-fix": "eslint --fix src test", "lint:types": "tsc --noEmit --jsx react", - "lint:style": "stylelint 'res/css/**/*.scss'", + "lint:style": "stylelint \"res/css/**/*.scss\"", "test": "jest", "test:e2e": "./test/end-to-end-tests/run.sh --app-url http://localhost:8080", "coverage": "yarn test --coverage"