From 57b47536924260f399d3ea01947ca49c889dad06 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Mon, 20 Nov 2023 21:42:36 +0100 Subject: [PATCH] corrected stylelint glob --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 91679b9..92ffafd 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "test:lint": "npm run test:lint:eslint && npm run test:lint:remark && npm run test:lint:style", "test:lint:eslint": "eslint --ext .vue,.ts,.tsx,.js,.jsx,.json,.yml,.yaml --max-warnings 0 --ignore-path .gitignore .", "test:lint:remark": "remark . --quiet --frail", - "test:lint:style": "stylelint --max-warnings 0 --ignore-path .gitignore **/*.{css,scss,vue,vuex}", + "test:lint:style": "stylelint --max-warnings 0 --ignore-path .gitignore \"**/*.{css,scss,vue,vuex}\"", "test:unit": "npm run test:unit:dev -- run --coverage", "test:unit:dev": "vitest", "test": "npm run test:lint && npm run test:unit",