From 36393490d5863b4f5a68b54a4fdc2dba6a8f1bb2 Mon Sep 17 00:00:00 2001 From: Shannon Moeller Date: Wed, 3 Nov 2021 05:39:58 +0000 Subject: [PATCH] fix lint to run on windows --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 666b011..270cf8f 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "4.0.0", "description": "Columnated lists for the CLI.", "scripts": { - "lint": "npx eslint --fix '*.js' && npx prettier --write '*.js'", + "lint": "npx eslint --fix \"*.js\" && npx prettier --write \"*.js\"", "test": "node test.js && node color.js", "cover": "npx c8 npm test" },