代码拉取完成,页面将自动刷新
module.exports = {
root: true,
env: {
node: true
},
extends: ['plugin:vue/essential', '@vue/standard', 'eslint:recommended'],
rules: {
// 0:off 1:on 2:error
eqeqeq: 0,
'no-console': 0,
'vue/no-unused-vars': 1,
'no-irregular-whitespace': 0,
'no-unused-vars': 1,
'vue/no-parsing-error': [2, { 'x-invalid-end-tag': false }],
camelcase: 0,
semi: [1, 'always'], // 末尾需要分号结束
'no-extra-semi': 1, // 禁用不必要的分号
'no-lonely-if': 1, // 禁止 if 语句作为唯一语句出现在 else 语句块中
'no-multiple-empty-lines': [1, { max: 3 }], // 不允许多个空行,最大空行为3
'no-whitespace-before-property': 1, // 禁止属性前有空白
// "arrow-parens": [1,"as-needed"], // 要求箭头函数在有多个参数情况下使用圆括号
'space-before-function-paren': 0, // 函数括号前后需要空格
'no-useless-escape': 0,
'no-undef': 0,
'comma-dangle': 0,
'comma-spacing': 0, //不需要逗号后面加空格,
'spaced-comment': 0
}
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。