远方蔚蓝
一刹那情真,相逢不如不见

文章数量 126

访问次数 199887

运行天数 1437

最近活跃 2024-10-04 23:36:48

进入后台管理系统

Vue学习-eslint代码规范检测规则配置


修改.eslintrc.js文件
rules: {
  'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  'semi': 0, // 如果 不需要eslint 检查分号这一项
  'space-before-function-paren': 0, // Missing space before function parentheses的问题,意思是在方法名和刮号之间需要有一格空格
  'indent': 'off' // 报错Expected indentation of xxx spaces but found xxx 解决方法
},