Dart Analyze

Dart Analyze

Community Analyzer

Sort combinator names alphabetically DRT-W1080

Anti-pattern
Major

DO sort combinator names alphabetically.

BAD:

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

GOOD:

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