From 878b48aa7aed92205e6cd05b634399262247a1ac Mon Sep 17 00:00:00 2001 From: Robin Townsend Date: Mon, 6 Jun 2022 11:21:51 -0400 Subject: [PATCH] Add a shortcut lint script --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index e50037f5..e74780a3 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "build-storybook": "build-storybook", "prettier:check": "prettier -c src", "prettier:format": "prettier -w src", + "lint": "yarn lint:types && yarn lint:js", "lint:js": "eslint --max-warnings 0 src", "lint:types": "tsc" },