21 lines
488 B
JavaScript
21 lines
488 B
JavaScript
|
/* eslint-env node */
|
||
|
require('@rushstack/eslint-patch/modern-module-resolution')
|
||
|
|
||
|
module.exports = {
|
||
|
root: true,
|
||
|
extends: [
|
||
|
'plugin:vue/vue3-essential',
|
||
|
'eslint:recommended',
|
||
|
'@vue/eslint-config-typescript',
|
||
|
'@vue/eslint-config-prettier/skip-formatting',
|
||
|
'@feature-sliced',
|
||
|
],
|
||
|
rules: {
|
||
|
'vue/multi-word-component-names': 0,
|
||
|
'import/order': 'warn',
|
||
|
},
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 'latest',
|
||
|
},
|
||
|
}
|