eslint
Cow manure
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ERROR in [eslint] Cannot use import statement outside a module.
是因为在模块文件之外使用了es6语法中的import,因为js运行环境无法解析es6语法,所以报错了。原创 2025-04-16 20:26:51 · 843 阅读 · 2 评论 -
ERROR in [eslint] Config (unnamed): Key “rules“: Key “no-unused-vars“: structuredClone is not define
eslint 配置文件在运行时需要用到 structuredClone 函数,但是这个函数只有node.js 17 及以上的版本才支持,所以报错。原创 2025-04-15 12:33:26 · 759 阅读 · 0 评论 -
eslint 配置项从“旧版”迁移到“新版”,和迁移过程中的常见错误:ERROR in [eslint] Could not find config file.
错误:ERROR in [eslint] Could not find config file. 的意思是找不到eslint配置文件, eslint 9.0以上的版本已经废弃了.eslintrc.js 的写法,所以要配置文件要写成 eslint.config.js原创 2025-04-14 21:26:33 · 1462 阅读 · 0 评论
分享