2021-11-11 19:35:41 -06:00
|
|
|
module.exports = {
|
2021-11-11 19:58:13 -06:00
|
|
|
parserOptions: {
|
|
|
|
tsconfigRootDir: __dirname,
|
|
|
|
project: ['./tsconfig.json'],
|
|
|
|
},
|
2021-11-11 19:35:41 -06:00
|
|
|
extends: [
|
2021-11-18 08:32:43 -06:00
|
|
|
'../shared/.eslintrc.js',
|
2021-11-11 19:35:41 -06:00
|
|
|
],
|
2022-04-15 01:05:43 -05:00
|
|
|
rules: {
|
|
|
|
'import/order': ['warn', {
|
|
|
|
'groups': ['builtin', 'external', 'internal', 'parent', 'sibling', 'index', 'object', 'type'],
|
|
|
|
'pathGroups': [
|
|
|
|
{
|
|
|
|
'pattern': '@/**',
|
|
|
|
'group': 'external',
|
|
|
|
'position': 'after'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
}]
|
|
|
|
},
|
2021-11-11 19:35:41 -06:00
|
|
|
};
|