内容

库前缀不使用下划线开头

避免库前缀使用下划线开头。

此规则从 Dart 2.16 开始可用。

规则集: 推荐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