From 4e413f6702ccea7c1e1037f5b9591fc2b4f5e77b Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Wed, 2 Apr 2025 21:28:44 +0200 Subject: [PATCH] chore(eslint): add sort-imports rule https://eslint.org/docs/latest/rules/sort-imports --- eslint.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eslint.config.js b/eslint.config.js index 88656cf8a..4b4c23dac 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -27,7 +27,8 @@ export default tseslint.config( argsIgnorePattern: "^_", varsIgnorePattern: "^_" } - ] + ], + "sort-imports": [ "error", { ignoreCase: false } ] } }, {