我是Webstorm,提示";"多余根目录的.eslintrc.js文件module.exports = { root: true, // https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style extends: 'standard', // required to lint *.vue files plugins: [ 'html' ], // add your custom rules here 'rules': { // allow paren-less arrow functions 'arrow-parens': 0, // allow debugger during development 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0 }}
2 回答
白猪掌柜的
TA贡献1893条经验 获得超10个赞
ESLint是一个用来识别 ECMAScript 并且按照规则给出报告的代码检测工具,使用它可以避免低级错误和统一代码的风格。ESLint被设计为完全可配置的;
所以你这边有加上分号报错,那就是和eslint设置的代码检测规则有关
括号中的 (semi) 告诉你使用的是哪一条规则,可以在根目录下的.eslintrc进行修改相应规则
建议你这边可以稍微的学习了解下eslint的使用方式,或者直接关闭掉eslint的代码检测
添加回答
举报
0/150
提交
取消