combinators_ordering
Sort combinator names alphabetically.
This rule is available as of Dart 2.19.
This rule has a quick fix available.
Details
#DO sort combinator names alphabetically.
BAD:
dart
import 'a.dart' show B, A hide D, C;
export 'a.dart' show B, A hide D, C;
GOOD:
dart
import 'a.dart' show A, B hide C, D;
export 'a.dart' show A, B hide C, D;
Usage
#To enable the combinators_ordering
rule, add combinators_ordering
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- combinators_ordering
Unless stated otherwise, the documentation on this site reflects Dart 3.5.3. Page last updated on 2024-07-03. View source or report an issue.