angular_analyzer_plugin icon indicating copy to clipboard operation
angular_analyzer_plugin copied to clipboard

WORK MOVED TO dart-lang/angular repository

Results 91 angular_analyzer_plugin issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/405837/37761425-eb1b0230-2db9-11e8-8828-2a64c74eaa1a.png) ```dart String get title => post.title; ```

Type: enhancement
P2 medium
Category: validation

![image](https://user-images.githubusercontent.com/405837/27291401-659e63b8-5510-11e7-966a-0f705a88325e.png) ```dart @Directive( selector: '[virtualScroll]', ) class VirtualScrollDirective { bool _active; @Input() set virtualScroll(bool active) { if (active == _active) { return; } _active = active; if (_active) { _restoreState();...

State: help wanted
Resolution: works as intended
Category: validation

IntelliJ IDEA 2019.1.3 or later + corresponding Dart plugin. Dart SDK 2.3.1. Steps to reproduce: - Create a new Dart project (chose AngularDart Web App template). 'Pub get' done automatically....

A number of things not yet working in intelliJ. These are just the ones I remember. Part of this ticket should be identifying more cases - [ ] click from...

Type: enhancement
P2 medium
Editor: intelliJ
Category: navigation

No html intellisense for AngularDart Custom Components on Webstorm.

I have fresh Dart installation VM version: 2.1.0-dev.5.0 (Wed Sep 19 19:15:19 2018 +0200) on "windows_x64" IntelliJ ![image](https://user-images.githubusercontent.com/7877627/45888487-72aa4f00-bdbe-11e8-9c77-a614807cf21c.png) Stagehand 3.1.3 I have created new stagehand project using instructions from https://webdev.dartlang.org/guides/get-started...

Hi there, referring to an [issue](https://youtrack.jetbrains.com/issue/WEB-39034) on youtrack at jetbrains, I'm interested of any roadmap regarding the mentioned feature. It seems that some of the implementation has to be done...

This will be able to suppress IntelliJ inspections in the future. Otherwise intelliJ has no idea whether a tag is understood by the plugin or not.

Seems like the most reasonable option given ``` @Output EventEmitter foo; ... ``` when you click on '$event'' should go to 'Foo' in the definition. For html events (like click),...

Type: enhancement
P2 medium
S2 medium
Category: navigation

Suppose there is a superclass called `MyBaseClass` that doesn't have a Directive/Component meta attached to it. If there is a component class called `MyDerivedClass` which extends `MyBaseClass`, it should be...

Type: bug
P1 high
S1 high
Category: validation