From 507a1e83e0d6861275c2308712f1431201156aee Mon Sep 17 00:00:00 2001 From: JCNoguera <88061365+VmMad@users.noreply.github.com> Date: Wed, 31 Jan 2024 12:22:33 +0100 Subject: [PATCH] fix: add tsx files to prettier in lint staged (#1031) --- client/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/package.json b/client/package.json index 72902e6fb..4f2d27a7f 100644 --- a/client/package.json +++ b/client/package.json @@ -115,6 +115,6 @@ ], "lint-staged": { "src/**/*.{ts,js,tsx,jsx}": "eslint --cache --fix", - "src/**/*.{ts,js,scss,css}": "prettier --ignore-path=.prettierignore --write" + "src/**/*.{ts,js,tsx,jsx,scss,css}": "prettier --ignore-path=.prettierignore --write" } }