为什么 Firebase CLI 询问我是否要使用 ESLint,即使我在初始化云函数目录时选择了 TypeScript?

Why did Firebase CLI asked me if I wanted to use ESLint even when I selected TypeScript while initialising a cloud functions directory?

以下是我执行的步骤:

  1. 我使用 npm 安装了 Firebase CLI。
  2. 我创建了一个空目录
  3. 然后我 运行 命令 firebase init functions 并选择了我现有的项目之一
  4. 然后 Firebase CLI 问我:你想用什么语言来编写 Cloud Functions?
  5. 我选择了 TypeScript。
  6. 然后 CLI 问我:你想使用 ESLint 来捕获可能的错误并强制执行样式吗? (而理想情况下,它应该问我:你想使用 TSLint 来捕获可能的错误并强制执行样式吗?如本教程所示:https://www.youtube.com/watch?v=DYfP-UIKxH0&t=289s

有人可以帮我解决这里可能出现的问题吗?

您所指的视频已过时。 Firebase CLI recently updated 使用 ESLint 而不是 TSLint 来检查可能的代码错误。根据 CLI 版本 8.11.0 的发行说明:

Replaces tslint with eslint as the default linter in new Cloud Functions for Firebase directories.

这些工具都做类似的事情 - 检查代码中的警告。这些 lint 工具都不会影响代码的实际工作方式。你可以直接用默认的,没什么大不了的