no_leading_underscores_for_library_prefixes
避免在库前缀中使用前导下划线。
此规则自 Dart 2.16 起可用。
规则集: recommended(推荐), flutter
此规则具有可用的快速修复。
详细信息
#不要在库前缀中使用前导下划线。库前缀没有“私有”的概念。当其中一个名称以划线开头时,会向读者发送令人困惑的信号。为了避免这种情况,请不要在这些名称中使用前导下划线。
错误示例
dart
import 'dart:core' as _core;
正确示例
dart
import 'dart:core' as core;
用法
#要启用 no_leading_underscores_for_library_prefixes
规则,请在您的 analysis_options.yaml
文件中,在 linter > rules 下添加 no_leading_underscores_for_library_prefixes
analysis_options.yaml
yaml
linter:
rules:
- no_leading_underscores_for_library_prefixes
除非另有说明,否则本网站上的文档反映的是 Dart 3.6.0。页面最后更新于 2024-07-03。 查看源代码 或 报告问题。