24 lines
447 B
JavaScript
24 lines
447 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'react-app',
|
|
'prettier-standard',
|
|
'prettier/react',
|
|
],
|
|
plugins: ['import'],
|
|
settings: {
|
|
'import/resolver': {
|
|
alias: [
|
|
['src', './src']
|
|
]
|
|
}
|
|
},
|
|
rules: {
|
|
'import/order': ['error', {
|
|
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'],
|
|
alphabetize: {
|
|
order: 'asc'
|
|
},
|
|
'newlines-between': 'always',
|
|
}]
|
|
}
|
|
}
|