代码拉取完成,页面将自动刷新
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint'
},
env: {
browser: true,
es6: true
},
extends: [
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// https://eslint.vuejs.org/rules/
'plugin:vue/strongly-recommended',
// https://github.com/standard/standard/blob/master/docs/RULES-zhcn.md
'standard'
],
// required to lint *.vue files
plugins: ['vue'],
// 自定义规则
rules: {
// 允许使用 async-await
'generator-star-spacing': 'off',
// 开发环境允许使用调试 (生产模式禁用)
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
// 禁止使用 var
'no-var': 'error',
// 函数名括号前不需要有空格
'space-before-function-paren': 'off',
// 最多出现3个连续空行
'no-multiple-empty-lines': ["error", { "max": 3, "maxBOF": 1}],
// vue
// html属性必须换行
'vue/max-attributes-per-line': 'off',
// 没有内容的元素需要使用闭合标签
'vue/html-self-closing': 'off'
},
// 配置全局变量
globals: {
$: true
}
}
// ? ---------------------------- 忽略检测本段代码 ----------------------------
/* eslint-disable */
// 代码段: {
// }
/* eslint-enable */
// ? ---------------------------- 忽略检测本行代码 ----------------------------
// eslint-disable-line
// ? ---------------------------- 忽略检测下一行代码 ----------------------------
// eslint-disable-next-line
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。