-
Notifications
You must be signed in to change notification settings - Fork 238
some rules report false positives #379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Thank you for your issue report. For the last point, there are many issues in the tracker related to template references. For the others, we will investigate. |
Can you give me an example of log for this item : Concerning the check-pipe, can you remove it form your configuration for this moment because there is an issue opened (issue #365 ). |
Definitely:
|
And if you remove the check-pipe in your lint, what's happening ? |
If I remove that, I get no errors 😄 |
Ok nice. You can monitor this issue for resolution. Otherwise, there is indeed a problem with the rule "banana-in-a-box". I will take a look at this weekend. |
Maybe it worth to create a new issue for this, but since the title is a bit generic, let's report it here: Having the following:
Results in:
|
That's the expected behavior from the rule |
Lets reopen the issue since there are problems in other rules ( |
The problem in all rules which involve
to:
which breaks our mapping. Here's the solution by the language service. It's not straightforward. Most likely I'll reuse it, however, we risk to have frequent breaking changes given the non-stable APIs being used there. |
mmhm, i hope this will be okay ... |
I'm afraid we'll need to keep this. It can be implemented with a strategy, doesn't have to be in a long function but the logic will remain. |
Hi @mgechev, have you progress in this issue ? |
Haven't done anything here yet. The way to go is custom expression parser for *-prefixed attributes. |
ok, I'll look at this If I have time. |
I'm still seeing some problems with the <p *ngIf="(items | async)?.length as length" class="mat-caption"> <span *ngIf="product.propagationTolerance" class="label">± {{ product.propagationTolerance | number }}</span> For the latter, removing |
@rolandjitsu thanks for pointing this out! I'll move it to a separate issue. Hopefully we'll be able to soon clean the glitches and open a PR to Angular CLI with the new features. |
I just discovered some weird cases where
angular-whitespace
complains about:<div fxLayout="column">
(thel
- as in the letterL
- must be the confusing part)<md-icon *ngIf="isOnline | async; else offline">cloud_off</md-icon>
<md-toolbar color="primary">
- might be the same case as the first one<rj-image-filters (queryChange)="updateFilters($event)"></rj-image-filters>
- could be the same case with the letterL
<!-- Setttings -->
- might be the!
sign there, nonetheless, comments should be ignored<md-select [(ngModel)]="timeRangeKey">
- could be theL
again*ngIf="query.isUpdating | async as isUpdating"
- there's obviously space there, so not sure what the problem isAnd
banana-in-a-box
:<a md-list-item (click)="navigate(['/resources'])">
- confuses what's inside the quotes I guessFinally
no-access-missing-member
:The text was updated successfully, but these errors were encountered: