记录 vue2.0 再使用过程中遇到的问题

vue-cli脚手架构建了项目如何去除Eslint验证

 

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

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

1
2
3
4
5
6
7
8
9
{
   test: /.(js|vue)$/,
   loader: 'eslint-loader',
   enforce: 'pre',
   include: [resolve('src'), resolve('test')],
   options: {
     formatter: require('eslint-friendly-formatter')
   }
}
 
 
原文地址:https://www.cnblogs.com/Kipper-liu/p/8597723.html