内容

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