await_only_futures
Await only futures.
This rule is available as of Dart 2.0.
Rule sets: core, recommended, flutter
This rule has a quick fix available.
Details
#AVOID using await on anything which is not a future.
Await is allowed on the types: Future<X>
, FutureOr<X>
, Future<X>?
,
FutureOr<X>?
and dynamic
.
Further, using await null
is specifically allowed as a way to introduce a
microtask delay.
BAD:
dart
main() async {
print(await 23);
}
GOOD:
dart
main() async {
await null; // If a delay is really intended.
print(23);
}
Usage
#To enable the await_only_futures
rule,
add await_only_futures
under linter > rules in your
analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- await_only_futures
除非另有说明,文档之所提及适用于 Dart 3.5.4 版本,本页面最后更新时间: 2024-08-02。 查看文档源码 或者 报告页面问题。