From 579c0ac0b36cc8377e8384ab3ebf4fbf22e0410d Mon Sep 17 00:00:00 2001 From: Domenico Muscillo Date: Mon, 16 Dec 2024 16:09:12 +0100 Subject: [PATCH] fix(eslint): lint:check Single quotes cause problems when running from Windows Refs #549 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 98a6b8d8..b6e2fe87 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "prepare": "husky install", "commit": "commit", "bump": "standard-version", - "lint:check": "eslint '**/*.{ts,tsx}'", + "lint:check": "eslint \"**/*.{ts,tsx}\"", "lint": "npm run lint:check -- --fix", "format:check": "prettier --check '**/*.{ts,tsx,md}'", "format": "prettier --write '**/*.{ts,tsx,md}'",