From 81fe00ddbfcc3be8aa02cefc9763fdbeef54949c Mon Sep 17 00:00:00 2001 From: Tommy Date: Thu, 15 Sep 2022 10:21:08 -0500 Subject: [PATCH] Use double quotes in `lint` script (#162) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a5f28d3e..6df6f4f2 100644 --- a/package.json +++ b/package.json @@ -21,8 +21,8 @@ "test": "npm run lint && ava", "build": "npm run clean && tsc --project tsconfig.tsd.json && chmod +x dist/cli.js", "clean": "del-cli dist", - "lint": "eslint 'source/**/*'", - "lint:fix": "eslint --fix 'source/**/*'" + "lint": "eslint \"source/**/*\"", + "lint:fix": "eslint --fix \"source/**/*\"" }, "files": [ "dist/**/*.js",