目录

sort_pub_dependencies

按字母顺序对 pub 依赖项进行排序。

此规则自 Dart 2.1 起可用。

详细信息

#

应该pubspec.yaml 中按字母顺序(A 到 Z)对 pub 依赖项进行排序。

对 pub 依赖项列表进行排序可以使维护更容易。

用法

#

要启用 sort_pub_dependencies 规则,请在 analysis_options.yaml 文件中的 linter > rules 下添加 sort_pub_dependencies

analysis_options.yaml
yaml
linter:
  rules:
    - sort_pub_dependencies