目录

combinators_ordering

按字母顺序对组合器名称进行排序。

此规则从 Dart 2.19 起可用。

此规则有可用的快速修复

详情

#

应该按字母顺序对组合器名称进行排序。

错误示例

dart
import 'a.dart' show B, A hide D, C;
export 'a.dart' show B, A hide D, C;

正确示例

dart
import 'a.dart' show A, B hide C, D;
export 'a.dart' show A, B hide C, D;

用法

#

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

analysis_options.yaml
yaml
linter:
  rules:
    - combinators_ordering