eslint
/**
off | 0 : 表示不验证规则
warn | 1 : 表示验证规则,当不满足时,给警告
error | 2 : 表示验证规则,不满足时报错
*/
module.exports = {
root: true,
env: {
browser: true,
es6: true,
node: true
},
extends: [‘eslint:recommended’, ‘plugin:vue/essential’], //‘airbnb’
globals: {
_: ‘readonly’,
Ato
原创
2021-03-12 09:45:15 ·
122 阅读 ·
1 评论