内容

conditional_uri_does_not_exist

缺少条件导入。

此规则自 Dart 2.16 起可用。

详情

#

不要在条件导入中引用不存在的文件。

如果条件评估结果导致需要导入丢失的文件,则代码可能在运行时失败。

错误示例

dart
import 'file_that_does_exist.dart'
  if (condition) 'file_that_does_not_exist.dart';

正确示例

dart
import 'file_that_does_exist.dart'
  if (condition) 'file_that_also_does_exist.dart';

用法

#

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

analysis_options.yaml
yaml
linter:
  rules:
    - conditional_uri_does_not_exist