dart-archive / angular_analyzer_plugin

WORK MOVED TO dart-lang/angular repository
https://github.com/dart-lang/angular/tree/master/angular_analyzer_plugin
68 stars 13 forks source link

No error for tags that don't use hyphen #634

Closed ghost closed 6 years ago

ghost commented 6 years ago
<!-- no error -->
<ab>
</ab>
<!-- warning: Unresolved tag "a-b" -->
<a-b>
</a-b>

angular_analyzer_plugin version: 0.0.17+3 Dart VM version: 2.0.0

MichaelRFairhurst commented 6 years ago

Thanks for filing!

Yes, this is covered by #248 !

Every time I've tried to enable this, I find a new plain HTML tag that gets invalidly reported (ex: <audio> was one!).

I think it's a good time for me to take another swing at this though.