From c83cf30c55f3143a8a35a440acbf3c79736424f1 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Fri, 12 Apr 2024 09:50:36 +0200 Subject: [PATCH] chore: make lint script Windows compatible --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 86d28115..b036db7d 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ }, "scripts": { "precommit": "npm run lint", - "lint": "eslint '*.js' '**/**/*.js'", + "lint": "eslint \"*.js\" \"**/**/*.js\"", "lint-fix": "npm run lint -- --fix", "semantic-release": "semantic-release", "start": "yarn run test-watch",