From d3f423748a73def072bb89bf231deabbf1ed0cf9 Mon Sep 17 00:00:00 2001 From: ChefMomota <98292246+ChefMomota@users.noreply.github.com> Date: Fri, 13 May 2022 11:00:09 +0800 Subject: [PATCH] fix: Update lintstagedrc json format (#3910) * fix: Remove lintstagedrc json format * Lintstagedrc add json format * chore: Update lintstagedrc --- .lintstagedrc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.lintstagedrc b/.lintstagedrc index fc6fae5a2..60208b048 100644 --- a/.lintstagedrc +++ b/.lintstagedrc @@ -1,3 +1,9 @@ { - "**/*.{js,jsx,ts,tsx,json}": ["eslint", "prettier --write"] + "**/*.{js,jsx,ts,tsx}": [ + "eslint", + "prettier --write" + ], + "**/*.json": [ + "prettier --write" + ] } \ No newline at end of file