发生未处理的异常:无效的 lint 配置。在 Angular 12 中将 Tslint 迁移到 eslint 后无需检查任何内容

发布于 2025-01-11 09:52:09 字数 117 浏览 0 评论 0原文

将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

攒一口袋星星 2025-01-18 09:52:09

发现 .eslintrc.json & 的访问和内容angular.json 影响了我。

据我了解,这些文件需要从运行 linter 的位置“可见”(例如,同一目录、项目根目录)。

接下来,.eslintrc.json 的默认内容在根对象中包含此条目。此条目对我没有影响,但 YMMV - 根据您的项目进行调整:

"ignorePatterns": ["projects/**/*"]

接下来是 angular.json 的默认内容(使用点符号来指示在 JSON 中的位置找到此条目):
JSON path = items..architect.lint

这些默认文件模式与我的项目结构不匹配 - 因此得到了与 OP 相同的错误

    "lint": {
      "builder": "@angular-eslint/builder:lint",
      "options": {
        "lintFilePatterns": [
          "src/**/*.ts",
          "src/**/*.html"
        ]
      }
    }

希望这对人们有帮助。

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:

"ignorePatterns": ["projects/**/*"]

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

    "lint": {
      "builder": "@angular-eslint/builder:lint",
      "options": {
        "lintFilePatterns": [
          "src/**/*.ts",
          "src/**/*.html"
        ]
      }
    }

Hope this helps folks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文