From aefbf11d843413402d52ad43ec8cd1692908bbba Mon Sep 17 00:00:00 2001 From: gmolki Date: Wed, 25 Sep 2024 16:28:30 +0200 Subject: [PATCH] fix eslint command --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e3b73c73..10d5cfe6 100644 --- a/package.json +++ b/package.json @@ -23,8 +23,8 @@ "version": "lerna version --no-private", "publish": "lerna publish from-git --no-private --yes", "doc": "typedoc", - "lint": "eslint */**/*.{js,ts,tsx} --quiet", - "lint:fix": "eslint */**/*.{js,ts,tsx} --quiet --fix", + "lint": "eslint '*/**/*.{js,ts,tsx}' --quiet", + "lint:fix": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix", "test": "npm run test:jest", "test:jest": "jest --testTimeout=120000 --verbose --coverage ./packages" },