代码拉取完成,页面将自动刷新
module.exports = {
root: true,
env: {
browser: true,
},
'extends': [
'plugin:vue/essential',
// '@vue/standard'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
// 其实就是添加上了这一行
//括号后面没有空格不报错
'space-before-function-paren': 0,
"eqeqeq": 1, //要求使用 === 和 !== (全等)
"no-use-before-define": 2, //未定义前不能使用
"semi": [1, "always"], //语句强制分号结尾 (警告)
"no-unused-vars":2, //定义了未使用 警告
//"spaced-comment": 2,//注释风格要不要有空格什么的
"space-before-blocks": 1, // if function等的大括号之前需要有空格
"space-infix-ops": 2,
"no-irregular-whitespace": 2, //不规则的空白不允许
"no-trailing-spaces": 1, //一行结束后面有空格就发出警告
},
parserOptions: {
//parser: 'babel-eslint'
},
parser: 'vue-eslint-parser',
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。