为什么vue的main.js文件ESlint检测不能有分号?

我是Webstorm,提示";"多余

https://img1.mukewang.com/5c78ca510001127d08000452.jpg

根目录的

.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

  }

}


富国沪深
浏览 2224回答 2
2回答

白猪掌柜的

ESLint是一个用来识别 ECMAScript 并且按照规则给出报告的代码检测工具,使用它可以避免低级错误和统一代码的风格。ESLint被设计为完全可配置的;所以你这边有加上分号报错,那就是和eslint设置的代码检测规则有关括号中的 (semi) 告诉你使用的是哪一条规则,可以在根目录下的.eslintrc进行修改相应规则建议你这边可以稍微的学习了解下eslint的使用方式,或者直接关闭掉eslint的代码检测
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript