From f492580864920de500597fee26fc29cbc7689c20 Mon Sep 17 00:00:00 2001 From: oomeow Date: Tue, 7 Oct 2025 18:50:18 +0800 Subject: [PATCH] chore: pretty lint-staged.config.js --- lint-staged.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lint-staged.config.js b/lint-staged.config.js index 8eee036a..fbf862bf 100644 --- a/lint-staged.config.js +++ b/lint-staged.config.js @@ -2,5 +2,8 @@ export default { // Run Prettier on all supported file types "*.{js,jsx,ts,tsx,json,css,scss,md,html}": ["prettier --write"], // Run ESLint on JavaScript/TypeScript files with cache for performance - "*.{js,jsx,ts,tsx}": ["eslint --cache --cache-location .eslintcache --fix", "eslint --cache --cache-location .eslintcache"], + "*.{js,jsx,ts,tsx}": [ + "eslint --cache --cache-location .eslintcache --fix", + "eslint --cache --cache-location .eslintcache", + ], };