From 83c1f5a3ab6dea451c35aeeda3034fe4bc906dd0 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Wed, 5 Jun 2019 11:06:48 -0400 Subject: [PATCH] chore: removed lint and typecheck tasks from pre-push (#580) They're covered by the CI so save people some time and make it less likely for people to use `--no-verify` --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a8ac88c3719..e74b25def8d 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "lint": "eslint . --ext .js,.ts", "lint-fix": "eslint . --ext .js,.ts --fix", "pre-commit": "yarn lint-staged", - "pre-push": "yarn lint && yarn typecheck && yarn format-check", + "pre-push": "yarn format-check", "postinstall": "lerna bootstrap && yarn build && lerna link", "test": "lerna run test --parallel", "typecheck": "lerna run typecheck"