我不确定我正在使用的东西是否存在错误,或者我是否在这里设置了错误,但是我在运行关于{eslint-的eslint src --fix
时从eslint得到了这个错误plugin- @ typescript-eslint“
我已经指定了@ TypeScript-eslint文档中列出的插件,但是却出现了这个奇怪的错误,其中eslint试图在插件名称的开头添加eslint-plugin-(软件包名称为@typescript-eslint/eslint-plugin
)
我正在使用盖茨比和随附的TypeScript plugin。
错误
$ eslint src --fix
Oops! Something went wrong! :(
ESLint: 4.19.1.
ESLint couldn't find the plugin "eslint-plugin-@typescript-eslint". This can happen for a couple different reasons:
1. If ESLint is installed globally, then make sure eslint-plugin-@typescript-eslint is also installed globally. A globally-installed ESLint cannot find a locally-installed plugin.
2. If ESLint is installed locally, then it's likely that the plugin isn't installed correctly. Try reinstalling by running the following:
npm i eslint-plugin-@typescript-eslint@latest --save-dev
.eslintrc.js:
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: 'module',
},
env: {
browser: true,
node: true,
es6: true,
'jest/globals': true,
},
plugins: ['@typescript-eslint', 'react', 'jest'],
extends: [
'standard',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:jest/recommended',
'plugin:prettier/recommended',
// 'eslint-config-prettier', // must be last
'prettier/@typescript-eslint',
],
rules: {
'react/prop-types': 0,
'jsx-quotes': ['error', 'prefer-single'],
'react/no-unescaped-entities': 0,
},
settings: {
react: {
version: 'detect',
},
linkComponents: [
// Components used as alternatives to <a> for linking, eg. <Link to={ url } />
'Hyperlink',
{ name: 'Link', linkAttribute: 'to' },
],
},
}
package.json
{
"name": "jmulholland.com",
"description": "My personal website",
"license": "MIT",
"scripts": {
"dev": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"lint": "eslint src --fix",
"prettier": "prettier \"**/*.+(js|jsx|ts|tsx|json|css|md|mdx|graphql)\"",
"format": "yarn prettier --write",
"type-check": "tsc --noEmit",
"validate": "yarn lint && yarn prettier --list-different"
},
"dependencies": {
"gatsby": "^2.1.4",
"gatsby-plugin-react-helmet": "^3.0.6",
"gatsby-plugin-styled-components": "^3.0.5",
"gatsby-plugin-typescript": "^2.0.10",
"gatsby-plugin-typography": "^2.2.7",
"gatsby-remark-prismjs": "^3.2.4",
"gatsby-source-contentful": "^2.0.29",
"gatsby-transformer-remark": "^2.3.0",
"prismjs": "^1.15.0",
"prop-types": "^15.7.2",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-helmet": "^5.2.0",
"react-typography": "^0.16.18",
"styled-components": "^4.1.3",
"typography": "^0.16.18"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"babel-jest": "^24.1.0",
"babel-plugin-styled-components": "^1.10.0",
"babel-preset-gatsby": "^0.1.8",
"dotenv": "^6.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"faker": "^4.1.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"typescript": "^3.3.3333"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}
答案 0 :(得分:6)
解决方案只是升级到eslint的最新版本
答案 1 :(得分:1)
我在Mac上的解决方案就像
Groups
cd /usr/local/lib/node_modules/
rm -rf eslint
答案 2 :(得分:1)
不知道是否还没有解决。但是在我的 .eslintrc.json 中添加 '"root": true' 对我有帮助。
答案 3 :(得分:0)
可能导致此问题的另一个原因是未配置ESLint
。
就我而言,将.eslintrc.json
文件添加到根目录(配置正确)可以解决此问题。
答案 4 :(得分:0)
由于我现在遇到eslint
的相同问题,因此我在此发布有关我的情况的根本原因。
我安装了这个eslint-nullish-coalescing
插件,它是eslint
的一个分支,以使合并无效。该插件更改了node_module\.bin\eslint.cmd
文件的内容。
来自
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\eslint\bin\eslint.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\eslint\bin\eslint.js" %*
)
到
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\eslint-nullish-coalescing\bin\eslint.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\eslint-nullish-coalescing\bin\eslint.js" %*
)
因此,eslint找不到适合其工作的插件,因此出现了错误。
尽管OP没有使用eslint-nullish-coalescing
软件包,但是如果有人现在正面临此问题,我建议您验证node_modules\.bin\eslint.cmd
文件的内容。
答案 5 :(得分:0)
对于未来可能遇到此问题的任何读者,就我而言,我正在使用基于 node:alpine
映像的多阶段 Docker 构建。多阶段构建旨在将应用的 dependencies
和 devDependencies
(在 package.json
中)分开。
在创建我的 Dockerfile
(经过几个小时的多次修改)的某个时刻,我在 Dockerfile
的开头添加了以下行:
ENV NODE_ENV production
这会导致 npm
忽略 devDependencies
包,进而导致 ESLint 失败(因为它没有安装)。
我将环境变量声明移至我最初想要的最终(发布)构建阶段,然后 npm
安装了所有必需的包并且 ESLint 成功运行。
希望这可以为某人节省一些宝贵的时间。
答案 6 :(得分:0)
就我而言,其中一个父目录有另一个 node_modules 文件夹。
将包目录移动到父树中没有其他 node_modules 文件夹的路径中消除了错误。
答案 7 :(得分:0)
我刚刚在一个大型 monorepo 上遇到了这个问题,找到了两个解决方案为我们解决了这个问题:
{
"scripts": {
"lint": "eslint src --resolve-plugins-relative-to ."
}
}
如果您使用纱线工作区,yarn run
也可以解决问题:
{
"scripts": {
"lint": "yarn run eslint src"
}
}
答案 8 :(得分:0)