From 55137951919ca5539e28f194fbf9eea8f1837087 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Wed, 18 Nov 2020 11:08:49 +0100 Subject: [PATCH] add lint:fix script --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 72b104fb..d1aed130 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "clean:packages": "rm -rf ./packages/*/dist", "release": "yarn lint && yarn test && yarn build:packages && lerna publish", "lint": "eslint --quiet --no-error-on-unmatched-pattern ./", + "lint:fix": "eslint --fix --quiet --no-error-on-unmatched-pattern ./", "test:open": "cypress open --project tests", "test": "cypress run --project tests", "reset": "yarn clean:packages && rm -rf ./**/.cache && rm -rf ./**/node_modules && rm -rf ./yarn.lock && yarn install"