diff --git a/package.json b/package.json index bccbb736..f294eb37 100644 --- a/package.json +++ b/package.json @@ -6,10 +6,10 @@ "main": "lib/main.js", "scripts": { "build": "tsc --project tsconfig.app.json && ncc build", - "format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write **/*.{ts,yml,yaml}", - "format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check **/*.{ts,yml,yaml}", - "lint": "eslint --config ./.eslintrc.js **/*.ts", - "lint:fix": "eslint --config ./.eslintrc.js **/*.ts --fix", + "format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"", + "format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"", + "lint": "eslint --config ./.eslintrc.js \"**/*.ts\"", + "lint:fix": "eslint --config ./.eslintrc.js \"**/*.ts\" --fix", "lint:all": "npm run format-check && npm run lint", "lint:all:fix": "npm run format && npm run lint:fix", "test": "jest --config ./jest.config.js",