Matan Lurey

Results 428 comments of Matan Lurey

Yeah I guess it depends if you want to configuration or convention based. @kevmoo what say you?

A bit here: https://github.com/dart-lang/angular/issues/907 It would be nice for this to be automated entirely... but I'd be satisfied for semi-manual (i.e. run the commands, but they do all the work).

@tvolkert I am seeing a pub error: ``` Package observe has no versions that match >=0.14.0

I think it's OK to keep Angular Dart 1 using the deprecated package for the time being - we aren't expecting any new users and old users are moving to...

If you are using the transformer AND are not using mirrors elsewhere, use: ``` dart @MirrorsUsed(override: '*') import 'dart:mirrors'; ``` That tells dart2js not to retain symbols for any library.

_From @zoechi on July 17, 2018 8:49_ > How to specific config dart sdk in flutter? flutter always use cache dart sdk.... There is no way to chose a different...

Is this really part of the style guide? What is the relevance?

At what point do available lints become noise I guess is my next question, then.

I support this. To me this is mostly a style question, but in large enough code bases consistency is important to me.

re: 2, it should be where either `a` or `b` is `this.runtimeType`, I think. For example: ```dart void anExample(Function a, Object b) { print(a.runtimeType == b.runtimeType); } ``` ... is...