From a18f6f9d288d42bff2dfc94a7708f7fd1d807ed5 Mon Sep 17 00:00:00 2001 From: Ryan Wang Date: Wed, 11 May 2022 15:49:52 +0800 Subject: [PATCH] chore: remove the --fix parameter from the lint script Signed-off-by: Ryan Wang --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3e1023ec..b9bc622e 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'", "test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'", "typecheck": "vue-tsc --noEmit -p tsconfig.app.json --composite false", - "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore", + "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore", "story:dev": "histoire dev --port 4000", "story:build": "histoire build" },