22 lines
334 B
JavaScript
22 lines
334 B
JavaScript
![]() |
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
node: true,
|
||
|
browser: true
|
||
|
},
|
||
|
extends: [
|
||
|
'plugin:vue/essential',
|
||
|
'standard'
|
||
|
],
|
||
|
plugins: [
|
||
|
'vue'
|
||
|
],
|
||
|
parserOptions: {
|
||
|
parser: 'babel-eslint'
|
||
|
},
|
||
|
rules: {
|
||
|
'vue/no-template-key': 'off',
|
||
|
'vue/valid-v-for': 'off',// 禁用 vue/valid-v-for 规则
|
||
|
}
|
||
|
}
|