From 725f631c7c51d5dc197c9381a8dd47bea6232bfb Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Fri, 2 Feb 2024 21:26:01 -0600 Subject: [PATCH] chore: Update lint-staged config to also lint TypeScript files --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c45119e..b8f924b 100644 --- a/package.json +++ b/package.json @@ -79,7 +79,7 @@ "typescript": "^4.7.3" }, "lint-staged": { - "*.js": "eslint --cache --fix", + "*.{js,ts}": "eslint --cache --fix", "*.{ts,js,yml,md,json}": "prettier --write" } }