ESLint Vue 多字组件

新手上路,请多包涵

有没有办法停止从 ESLint 获取 Vue3 中单个单词 视图 名称的错误?

每次我运行 ESLint 时,我都会收到以下消息:

   1:1  error  Component name "About" should always be multi-word  vue/multi-word-component-names

我目前有这个设置:

文件结构:

 ├── index.html
├── node_modules
├── npm
├── package.json
├── package-lock.json
├── public
│   └── favicon.ico
├── README.md
├── src
│   ├── App.vue
│   ├── assets
│   │   └── logo.svg
│   ├── components
│   │   └── Menu.vue
│   ├── env.d.ts
│   ├── main.ts
│   ├── router
│   │   └── index.ts
│   └── views
│       ├── About.vue
│       └── Home.vue
├── tsconfig.json
└── vite.config.ts

.eslintrc:

 {
    "root": true,
    "env": {
        "node": true
    },
    "extends": [
        "plugin:vue/vue3-essential",
        "eslint:recommended",
        "@vue/typescript/recommended"
    ],
    "parserOptions": {
        "ecmaVersion": 2021
    },
    "rules": {}
}

包.json

 {
...
  "scripts": {
    "dev": "vite",
    "build": "vue-tsc --noEmit && vite build",
    "preview": "vite preview",
    "lint": "eslint --ext .ts,vue --ignore-path .gitignore ."
  },
...
}

原文由 Tomkys 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 1.3k
2 个回答

选项 1:全局禁用

要禁用所有文件中的规则(即使是 src/components 中的那些):

 // <projectRoot>/.eslintrc.js
module.exports = {
  ⋮
  rules: {
    'vue/multi-word-component-names': 0,
  },
}

选项 2: overrides 在 ESLint 配置中为 src/views/

要仅为 src/views/**/*.vue 禁用规则,请指定 overrides 配置

 // <projectRoot>/.eslintrc.js
module.exports = {
  ⋮
  overrides: [
    {
      files: ['src/views/**/*.vue'],
      rules: {
        'vue/multi-word-component-names': 0,
      },
    },
  ],
}

_注意: 如果使用带有 ESLint Extension 的 VS Code,可能需要重新启动 ESLint 服务器(通过 Command Palette>ESLint: Restart ESLint Server 命令)或重新启动 IDE 以重新加载配置。_

选项 3:目录级配置 src/views/

也可以使用 该目录中的 .eslintrc.js 文件 禁用 src/views/**/*.vue 的规则:

 // <projectRoot>/src/views/.eslintrc.js
module.exports = {
  rules: {
    'vue/multi-word-component-names': 0,
  },
}

原文由 tony19 发布,翻译遵循 CC BY-SA 4.0 许可协议

对于仍然有此问题的用户,请在 .eslintrc.js 文件中的规则下添加以下内容

rules: {
  ...
  'vue/multi-word-component-names': 0,
}

原文由 Joshua Kusaasira 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题