From 0a7428edab6c75061108fcd13cfef390046086dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Herrera=20Guzm=C3=A1n?= Date: Wed, 11 Sep 2019 15:53:29 +0200 Subject: [PATCH] chore: fix Prettier and Stylelint glob expansion for Windows --- .prettierrc | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.prettierrc b/.prettierrc index 556a741..9ecd3bd 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,4 +1,5 @@ { + "endOfLine": "auto", "useTabs": false, "printWidth": 160, "tabWidth": 2, diff --git a/package.json b/package.json index 332fa50..01a2bc2 100644 --- a/package.json +++ b/package.json @@ -152,7 +152,7 @@ "test:size": "bundlesize", "lint": "npm run lint:js && npm run lint:css", "lint:js": "npm run type-check && eslint . --ext .js,.ts,.tsx", - "lint:css": "stylelint 'src/**/styles.ts'", + "lint:css": "stylelint \"src/**/styles.ts\"", "coverage:publish": "codecov", "pre:webpack": "rimraf static/*", "prepublish": "in-publish && npm run build || not-in-publish",