Closed
Description
As per the discussion in dart-archive/linter#2534, it's not obvious whether avoid_private_typedef_functions
should be expanded to support nonfunction type aliases.
Specifically cases like:
typedef _T = Object; // LINT?
mixin M { }
class _C = Object with M; // LINT?