Eslint报错解决合集

在项目根目录下新建.prettierrc文件,添加:

{
'Semi':false,  //移除分号
'SingleQuote':true  //使用单引号表示字符串
}

 

修改.eslintrc.js中的routers:

rules: {     "space-before-function-paren": 0,  //禁用函数名与()直接添加空格     'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',     'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'   }

 

上一篇:webpack打包项目报错:You may need an appropriate loader to handle this file type, currently no loaders are


下一篇:HTML 中 CSS Class 智能提示