发生未处理的异常:无效的 lint 配置。在 Angular 12 中将 Tslint 迁移到 eslint 后无需检查任何内容
将 tslint 迁移到 eslint 后,出现如上所述的错误。
对 eslinttrc.json 进行了更新,如下所示:
ignorePatterns:[]
不确定我缺少什么
After migrating tslint to eslint getting error as the above mentioned.
Made update to eslinttrc.json as below
ignorePatterns:[]
Not sure what I am missing
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发现 .eslintrc.json & 的访问和内容angular.json 影响了我。
据我了解,这些文件需要从运行 linter 的位置“可见”(例如,同一目录、项目根目录)。
接下来,.eslintrc.json 的默认内容在根对象中包含此条目。此条目对我没有影响,但 YMMV - 根据您的项目进行调整:
接下来是 angular.json 的默认内容(使用点符号来指示在 JSON 中的位置找到此条目):.architect.lint
JSON path = items.
这些默认文件模式与我的项目结构不匹配 - 因此得到了与 OP 相同的错误
希望这对人们有帮助。
Found that access to and content of .eslintrc.json & angular.json were impacting me.
As I understand these files need to be "visible" (e.g. Same directory, root of project) from where you run the linter.
Next, the default content of .eslintrc.json contains this entry in the root Object. This entry did not affect me, but YMMV - adjust per your project:
Next the default content of angular.json (using a dot notation to indicate where in the JSON To find this entry):
JSON path = projects.<YourProjectName>.architect.lint
These default File patterns did not match my project structure - and hence got the same error as the OP
Hope this helps folks.