food/.eslintrc.js
2023-11-09 15:20:28 +08:00

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 规则
}
}