From 37ac77e3faf5081347d753297d429249dcccfed8 Mon Sep 17 00:00:00 2001 From: Philip Harrison Date: Mon, 26 Jul 2021 12:39:26 +0100 Subject: [PATCH] Stop compiling tsc on pre-commit Should we even have a pre-commit hook? Could remove this and rely on CI and editor integration. --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index fdeae08..6975e2f 100644 --- a/package.json +++ b/package.json @@ -55,8 +55,7 @@ "lint-staged": { "src/**/*.ts": [ "prettier --write", - "eslint --fix", - "bash -c tsc --noEmit" + "eslint --fix" ] } }