From 95027de39cdd81f61bdb5077d5f5fb403da279e3 Mon Sep 17 00:00:00 2001 From: Alessandro Rabitti Date: Tue, 7 May 2024 15:15:53 +0200 Subject: [PATCH] Fixed stylelint commands --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6aef00b..ad675bb 100644 --- a/package.json +++ b/package.json @@ -8,10 +8,10 @@ "start": "next start", "lint": "npm run lint:js && npm run lint:css", "lint:js": "next lint", - "lint:css": "stylelint **/*.css", + "lint:css": "stylelint \"**/*.css\"", "fix": "npm run fix:js && npm run fix:css", "fix:js": "next lint --fix", - "fix:css": "stylelint **/*.css --fix", + "fix:css": "stylelint \"**/*.css\" --fix", "test": "vitest" }, "dependencies": {