1.创建工程的时候,提示是否启用eslint检测的。 Use ESLint to lint your code? No

2.在webpack.base.conf.js里面删掉下面:

{
   test: /\.(js|vue)$/,
   loader: 'eslint-loader',
   enforce: 'pre',
   include: [resolve('src'), resolve('test')],
   options: {
     formatter: require('eslint-friendly-formatter')
   }
}

  

相关文章:

  • 2021-11-16
  • 2021-09-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-18
  • 2021-11-13
  • 2021-06-20
猜你喜欢
  • 2021-06-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案