目录

避免_为_future_返回_null

避免为 Future 返回 null。

此规则已在最新的 Dart 版本中删除。

详情

#

注意:此规则已在 Dart 3.3.0 中删除;它不再起作用。

避免为 Future 返回 null。

Future 返回 null 几乎总是错误的。大多数时候,开发者只是忘记在函数上放置 async 关键字。

用法

#

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

analysis_options.yaml
yaml
linter:
  rules:
    - avoid_returning_null_for_future