chore: add import/order rule for eslint

This commit is contained in:
syuilo 2022-04-15 15:05:43 +09:00
parent 16c7ef41fb
commit 2c1689c798
2 changed files with 15 additions and 0 deletions

View file

@ -6,4 +6,16 @@ module.exports = {
extends: [
'../shared/.eslintrc.js',
],
rules: {
'import/order': ['warn', {
'groups': ['builtin', 'external', 'internal', 'parent', 'sibling', 'index', 'object', 'type'],
'pathGroups': [
{
'pattern': '@/**',
'group': 'external',
'position': 'after'
}
],
}]
},
};

View file

@ -68,5 +68,8 @@ module.exports = {
}],
'import/no-unresolved': ['off'],
'import/no-default-export': ['warn'],
'import/order': ['warn', {
'groups': ['builtin', 'external', 'internal', 'parent', 'sibling', 'index', 'object', 'type'],
}]
},
};