mirror of
https://github.com/fugary/simple-element-plus-template.git
synced 2025-11-12 14:27:49 +00:00
16 lines
279 B
JavaScript
16 lines
279 B
JavaScript
/* eslint-env node */
|
|
export default {
|
|
root: true,
|
|
'extends': [
|
|
'plugin:vue/vue3-recommended',
|
|
'eslint:recommended',
|
|
'@vue/eslint-config-standard'
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 'latest'
|
|
},
|
|
rules: {
|
|
'vue/multi-word-component-names': "off"
|
|
}
|
|
}
|