From ec2d982a8568c350996809c69314fdecd7ebdb01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Dostie?= <35579930+gdostie@users.noreply.github.com> Date: Tue, 17 Dec 2024 17:28:24 -0500 Subject: [PATCH] build(lint): stop running eslint on pre-commit We lint on the CI anyway so no need to slowdown the commit process --- package.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/package.json b/package.json index 28a2b293..730d32b1 100644 --- a/package.json +++ b/package.json @@ -56,11 +56,7 @@ "typescript-eslint": "8.4.0" }, "lint-staged": { - "**/*.{ts,js}": [ - "prettier --write", - "eslint . --fix" - ], - "**/*.{md,json,yml}": [ + "**/*.{ts,js,md,json,yml}": [ "prettier --write" ] },