Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 461 Bytes

combinators_ordering.md

File metadata and controls

25 lines (16 loc) · 461 Bytes

Pattern: Wrong combinator order

Issue: -

Description

DO sort combinator names alphabetically.

Example of incorrect code:

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

Example of correct code:

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

Further Reading