目录

await_only_futures

仅等待 Future。

此规则自 Dart 2.0 起可用。

规则集:corerecommendedflutter

此规则有一个快速修复可用。

详细信息

#

避免在不是 Future 的任何东西上使用 await。

允许在以下类型上使用 await:Future<X>FutureOr<X>Future<X>?FutureOr<X>?dynamic

此外,明确允许使用 await null 作为引入微任务延迟的方法。

错误

dart
main() async {
  print(await 23);
}

正确

dart
main() async {
  await null; // If a delay is really intended.
  print(23);
}

用法

#

要启用 await_only_futures 规则,请在 analysis_options.yaml 文件中的 linter > rules 下添加 await_only_futures

analysis_options.yaml
yaml
linter:
  rules:
    - await_only_futures