时间:2021-07-01 10:21:17 帮助过:64人阅读
1.在搭建vue脚手架时提示是否启用eslint检测的。 Use ESLint to lint your code? 写 no;
2.如果项目已经生成,我们可以这样。
在项目中代开 bulid 文件夹下的 webpack.base.config.js
文件。将以下代码删掉或注销:
{ test: /\.(js|vue)$/, loader: 'eslint-loader', enforce: 'pre', include: [resolve('src'), resolve('test')], options: { formatter: require('eslint-friendly-formatter') } },
相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!
推荐阅读:
Bootstrap中使用WebUploader步骤详解
vuex使用步骤剖析
以上就是不使用vue代码规范检测方法总结的详细内容,更多请关注Gxl网其它相关文章!