当前位置:   article > 正文

vue2关闭eslint检测验证_vue2关闭eslint校验

vue2关闭eslint校验

只需两步

打开.eslintrc.js文件,注释下面的代码:

  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. extends: [
  7. 'plugin:vue/essential',
  8. // '@vue/standard' //这里注释掉
  9. ],
  10. parserOptions: {
  11. parser: '@babel/eslint-parser'
  12. },
  13. rules: {
  14. 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  15. 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  16. 'vue/multi-word-component-names': 0
  17. }
  18. }

打开vue.config.js文件,添加代码:

  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. transpileDependencies: true,
  4. lintOnSave: false //添加这行
  5. })

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/77057
推荐阅读
相关标签
  

闽ICP备14008679号