02.【作废】Vite项目配置eslint

暂时研究这个东西的配置了,浪费了大量的实践,收益很小。而且我前端项目经验不足,即使掌握了eslint,也不清楚具体要配置哪些规则。

寻找了一圈资料,并没有找到十分靠谱的方案,最后在Vue官网上找到了一些相关的资料。方案如下:

  1. 安装依赖:

npm install --save-dev eslint eslint-plugin-vue

  1. 准备配置文件.eslintrc
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14

module.exports = {
  extends: [
    // add more generic rulesets here, such as:
    // 'eslint:recommended',
    'plugin:vue/vue3-recommended',
    // 'plugin:vue/recommended' // Use this if you are using Vue.js 2.x.
  ],
  rules: {
    // override/add rules settings here, such as:
    // 'vue/no-unused-vars': 'error'
  }
}

参考资料

  1. 代码规范
  2. User Guide