From f390512286e52b47b9055c5e5b45aaff3c996538 Mon Sep 17 00:00:00 2001 From: Lee <55973914+PeterAlfredLee@users.noreply.github.com> Date: Fri, 14 May 2021 16:54:19 +0800 Subject: [PATCH] chore: fix lint:fix command (#945) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d1d0685c..645cff4c 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "lint": "yarn run lint:script && yarn run lint:html", "lint:script": "prettier -c --parser typescript \"{src,__tests__,e2e,playground}/**/*.[jt]s?(x)\"", "lint:html": "prettier -c --parser html \"{playground,e2e}/**/*.html\"", - "lint:fix": "yarn run lint:html --write && yarn run lint:html --write", + "lint:fix": "yarn run lint:script --write && yarn run lint:html --write", "test:types": "tsc --build tsconfig.json", "test:dts": "tsc -p ./test-dts/tsconfig.json", "test:unit": "jest --coverage", -- 2.47.2