Chore: Fix import/ordering for image imports (#105055)

This commit is contained in:
Tom Ratcliffe
2025-05-07 13:41:56 +03:00
committed by GitHub
parent 125200c566
commit ec478138a5
+7
View File
@@ -101,9 +101,16 @@ module.exports = [
'import/order': [
'error',
{
pathGroups: [
{
pattern: 'img/**',
group: 'internal',
},
],
groups: [['builtin', 'external'], 'internal', 'parent', 'sibling', 'index'],
'newlines-between': 'always',
alphabetize: { order: 'asc' },
pathGroupsExcludedImportTypes: ['builtin'],
},
],
'no-restricted-imports': [