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
除非另有说明,本网站上的文档反映的是 Dart 3.6.0。页面最后更新于 2024-07-03。 查看源代码 或 报告问题。