有没有办法用 tsc 命令(或其他)显示像 TS80007 这样的可视代码(tsserver)建议?
Is there a way to show Visual Code (tsserver) suggestions like TS80007 with tsc command (or other)?
Visual Code (tsserver) 发出一些建议,例如 'await' has no effect on the type of this expression ts(80007)
但我找不到在 tsc
或 eslint
上使用它来在 CI 环境
中使用它的方法
终于找到了typescript-eslint
规则https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/await-thenable.md
因此将其添加到 .eslintrc 中就足够了:
"@typescript-eslint/await-thenable": "error"
Visual Code (tsserver) 发出一些建议,例如 'await' has no effect on the type of this expression ts(80007)
但我找不到在 tsc
或 eslint
上使用它来在 CI 环境
终于找到了typescript-eslint
规则https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/await-thenable.md
因此将其添加到 .eslintrc 中就足够了:
"@typescript-eslint/await-thenable": "error"