From 87fc7a2c5d61294f32d9e976c766fd746d6b2762 Mon Sep 17 00:00:00 2001 From: Chenlei Hu Date: Mon, 20 Jan 2025 11:15:16 -0500 Subject: [PATCH] [Cleanup] Remove explicit prettier plugin call (#2299) --- lint-staged.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lint-staged.config.js b/lint-staged.config.js index 10205624f..a62f5669d 100644 --- a/lint-staged.config.js +++ b/lint-staged.config.js @@ -11,7 +11,7 @@ export default { function formatAndEslint(fileNames) { return [ - `prettier --write ${fileNames.join(' ')} --plugin @trivago/prettier-plugin-sort-imports`, + `prettier --write ${fileNames.join(' ')}`, `eslint --fix ${fileNames.join(' ')}` ] }