vue的vite项目配置eslint没有效果?

发布于 2022-09-12 12:56:59 字数 880 浏览 25 评论 0

启动vite后不提示vue/no-unused-vars和any类型。

// .eslintrc.js
module.exports = {
    extends: [
        'eslint:recommended',
 "plugin:vue/vue3-recommended",
 "prettier",
 "prettier/vue",
 ],
 rules: {
        'vue/no-unused-vars': 'error',
 "@typescript-eslint/no-explicit-any": "off"
 },
};

package.json

{
  "name": "vue3vitets",
 "version": "0.0.0",
 "scripts": {
    "dev": "vite",
 "build": "vite build"
 },
 "dependencies": {
    "axios": "^0.20.0",
 "typescript": "^4.0.3",
 "vue": "^3.0.0-rc.1",
 "vue-router": "^4.0.0-beta.13"
 },
 "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^4.4.1",
 "@typescript-eslint/parser": "^4.4.1",
 "@vue/compiler-sfc": "^3.0.0-rc.1",
 "eslint": "^7.11.0",
 "eslint-config-prettier": "^6.12.0",
 "eslint-plugin-vue": "^7.0.1",
 "prettier": "^2.1.2",
 "vite": "^1.0.0-rc.1"
 }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

回首观望 2022-09-19 12:56:59

同问,vite好像用不了eslint

怼怹恏 2022-09-19 12:56:59

package.json

npm install @rollup/plugin-eslint --save-dev

vite.config.js

import eslint from '@rollup/plugin-eslint'

……
plugins: [eslint()]
……

https://www.npmjs.com/package...

苦笑流年记忆 2022-09-19 12:56:59
resolve: {
        // 这样会导致eslint无效
        //alias: [
        //    {
        //        find: "@",
        //        replacement: path.resolve(projectRootDir, "src"),
        //    },
        //],
        alias: {
            "@": path.resolve(projectRootDir, "src"),
        },
        externals: {
            axios: "axios",
        },
    },
忘东忘西忘不掉你 2022-09-19 12:56:59

ESLint 的解析器使用的是 Espree 只能解析 js,把parser改为 vue-eslint-parser,就OK了。
参考官网 eslint-plugin-vue官网

- "parser": "@typescript-eslint/parser",
+ "parser": "vue-eslint-parser",
  "parserOptions": {
+     "parser": "@typescript-eslint/parser",
      "sourceType": "module"
  }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文