繁体   English   中英

eslint 命令在 CI 服务器上失败,并出现错误“ESLint 找不到要扩展的配置”标准“”

[英]eslint command fails on CI Server with error “ESLint couldn't find the config ”standard“ to extend from”

我有 eslint 配置,在我的本地设置(使用 vscode 编辑器)上运行良好。

但在 CI 服务器上,它失败并出现以下错误:

  eslint:config-array-factory Config file found: /home/worker/workspace/-CI-CD-Pipeline-Node-Ts_DC-705/.eslintrc.json +0ms
  eslint:config-array-factory Loading {extends:"standard"} relative to /home/worker/workspace/-CI-CD-Pipeline-Node-Ts_DC-705/.eslintrc.json +1ms

Oops! Something went wrong! :(

ESLint: 6.6.0.

ESLint couldn't find the config "standard" to extend from. Please check that the name of the config is correct.

The config "standard" was referenced from the config file in "/home/worker/workspace/-CI-CD-Pipeline-Node-Ts_DC-705/.eslintrc.json".

If you still have problems, please stop by https://gitter.im/eslint/eslint to chat with the team.

我正在运行以下命令来 lint:

./node_modules/.bin/eslint./ --ext.ts

我看到 git 上存在多个与此相关的问题( https://github.com/microsoft/vscode-eslint/issues/696 )但没有解决方案或对我不起作用。

任何人都可以在这里帮助我。

似乎没有安装 eslint-config-standard-with-typescript。

尝试这个:

npm install --save-dev eslint@7 eslint-plugin-promise@4 eslint-plugin-import@2 eslint-plugin-node@11 @typescript-eslint/eslint-plugin@4 eslint-config-standard-with-typescript

暂无
暂无

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

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