From 8bdc83bdc5f0747fe95f1a6c7a2724c0841a49cd Mon Sep 17 00:00:00 2001 From: Jim Cramer Date: Fri, 25 Jan 2019 16:45:53 +0100 Subject: [PATCH] Fix npm run lint for Window users --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 87d91d54a..1f7571946 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "HYF JavaScript2 module", "main": "index.js", "scripts": { - "lint": "eslint **/homework", + "lint": "eslint \"**/homework/**/*.js\"", "test": "npm run lint", "test-week1": "eslint Week1/homework", "test-week2": "eslint Week2/homework && jest Week2",