iview admin 关闭ESlint约束

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_21891743/article/details/89197097

打开文件.eslintrc.js在以下部分调整

rules: {
    // allow async-await
    'generator-star-spacing': 'off',
    // allow debugger during development
    'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    'vue/no-parsing-error': 'off',
    'no-undef': 'off',
    'camelcase': 'off'
  },

猜你喜欢

转载自blog.csdn.net/qq_21891743/article/details/89197097