繁体   English   中英

无法加载在“.eslintrc.json”中声明的插件“prettier”:找不到模块“eslint-plugin-prettier”

[英]Failed to load plugin 'prettier' declared in '.eslintrc.json': Cannot find module 'eslint-plugin-prettier'

我有一个使用 react 制作的前端项目,可以在 vsCode 上完美运行,但是当我将它上传到 Heroku 时,我收到了这个错误:

Failed to load plugin 'prettier' declared in '.eslintrc.json': Cannot find module 'eslint-plugin-prettier'
Require stack:
- /app/node_modules/react-scripts/config/__placeholder__.js
Referenced from: /app/.eslintrc.json

我试图卸载 eslint 并再次安装它,但它没有工作。 而且由于我有点新,我不知道我应该在哪里寻找答案。

这是我的 package.json 的一部分:

"eslintConfig": {
    "extends": [
      "react-app",
      "react-app/jest"
    ]
  },
"devDependencies": {
    "eslint": "^7.16.0",
    "eslint-config-airbnb": "^18.2.1",
    "eslint-config-prettier": "^7.1.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jsx-a11y": "^6.4.1",
    "eslint-plugin-prettier": "^3.3.0",
    "eslint-plugin-react": "^7.21.5",
    "eslint-plugin-react-hooks": "^4.2.0",
    "prettier": "2.2.1"
  }

这是 my.eslintrc.json

{
    "env": {
        "browser": true,
        "es2021": true
    },
    "extends": [
        "plugin:react/recommended",
        "plugin:prettier/recommended"
    ],
    "parserOptions": {
        "ecmaFeatures": {
            "jsx": true
        },
        "ecmaVersion": 12,
        "sourceType": "module"
    },
    "plugins": [
        "react",
        "prettier"
    ],
    "rules": {
        "no-console": "off",
        "prettier/prettier": ["error"],
        "consistent-return": "off",
        "react/jsx-indent": "off",
        "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
        "implicit-arrow-linebreak": "off",
        "react/button-has-type": "off",
        "jsx-a11y/label-has-associated-control": "off",
        "no-plusplus": "off",
        "react/prop-types": "off"
    }
}

我遇到了完全相同的问题。 我通过从 package.json 中删除现有的eslint-config- prettier 和eslint-plugin- prettier 解决了这个问题。 然后在重新安装纱线(或 npm)作为依赖项(而不是开发依赖项)之后。 然后我又把它推到了 heroku,它成功了!

有同样的问题。 为了解决这个问题,我将 eslint 从8.3.0版本降级到

    "eslint": "^7.32.0",
    "eslint-config-prettier": "^7.2.0",
    "eslint-plugin-prettier": "^3.4.1",

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM