一)、从WebStorm的设置出发

二)、从vue.config.js的配置出发

Vue-Cli 官方文档配置参考

通过上面两个步骤的配置,就能禁用ESLint代码校验了!

module.exports = {
  // 禁用ESLint代码校验
  lintOnSave: false
}

如果不想禁用ESLint,而是想自定义校验规则

ESLint 中文文档

ESLint 规则说明文档

例如,缩进规则

error: Expected indentation of 0 spaces but found 4 (indent) at src\views\login\index.vue:382:1:
  380 |             }
  381 |         }
> 382 |     }
      | ^
  383 | </script>
  384 |
  385 | <style lang="less" scoped>

例如,分号规则

error: Extra semicolon (semi) at src\views\login\index.vue:374:41:
  372 |                         type: 'error'
  373 |                     });
> 374 |                     console.error(error);
      |                                         ^
  375 |                     this.loading = false
  376 |                 })
  377 |             },
Logo

前往低代码交流专区

更多推荐