npm ESLint问题

rjjhvcjd  于 2023-08-06  发布在  其他
关注(0)|答案(1)|浏览(120)

尝试运行ESLint时出现以下错误。尝试过Babel和eslint-parser。还是同一个问题。
这个文件到底是什么我没有看到任何关于这方面的特别文件。

node_modules/eslint-plugin-jsdoc/dist/rules/informativeDocs.js:95
    descriptionReported ||= tag.description === description && /** @type {import('comment-parser').Spec & {line: import('../iterateJsdoc.js').Integer}} */

字符串
我的package.json上的内容

"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^44.2.4",
"eslint-plugin-prefer-arrow": "^1.2.3",


任何帮助都是感激的。

jdzmm42g

jdzmm42g1#

我遇到了同样的问题,对于我的项目,解决方案是将eslint-plugin-jsdoclatest降级为^39.8.0

相关问题