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.5.3。页面上次更新于 2024-07-03。 查看源代码 或 报告问题。