Небольшие правки в конфиг eslint для устранения конфликта в правиле порядка импорта

This commit is contained in:
Ilia Mashkov
2025-11-19 18:31:19 +03:00
parent 9abbe8dce8
commit 358389c074

View File

@@ -116,6 +116,7 @@ export default [
'internal',
['sibling', 'parent'],
'index',
'type',
],
pathGroups: [
{
@@ -124,12 +125,13 @@ export default [
position: 'before',
},
{
pattern: '@src/**',
pattern: '@/**',
group: 'internal',
},
],
pathGroupsExcludedImportTypes: ['internal', 'react'],
pathGroupsExcludedImportTypes: ['type'],
'newlines-between': 'always',
distinctGroup: false,
alphabetize: {
order: 'asc',
caseInsensitive: true,