diff --git a/config/js/eslint.config.js b/config/js/eslint.config.js index 00d7f26e..bf21735b 100644 --- a/config/js/eslint.config.js +++ b/config/js/eslint.config.js @@ -42,5 +42,15 @@ module.exports = { ], 'no-mixed-spaces-and-tabs': [SEVERITY], 'prettier/prettier': [SEVERITY], + 'import/order': [ + SEVERITY, + { + 'newlines-between': 'never', + alphabetize: { + order: 'asc', + caseInsensitive: true, + }, + }, + ], }, }