no-access-missing-member rule not considering template references
See original GitHub issueAngular template references are not considered by codelyzer, so the “no-access-missing-member” rule is raising an error (on loginForm) in such cases :
@Component({
template: `<form #loginForm="ngForm">
<button type="submit" [disabled]="!loginForm.valid">Se connecter</button>
</form>`
})
Issue Analytics
- State:
- Created 7 years ago
- Reactions:4
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Error related to rules 'no-access-missing-member' and ...
When I remove "no-access-missing-member": true and "templates-use-public": true from tslint.json tslint running without any errors.
Read more >TS Lint warning message - angular - Stack Overflow
When I run npm lint command from Circle CI , I am getting following warning message. Could not find implementations for the following...
Read more >Using dynamic references to specify template values
Dynamic references provide a concise, powerful way for you to specify external values stored and managed in other services in your stack templates....
Read more >Set reference fields via template - ServiceNow Community
Solved: Hi all, I am trying to set Model Category and Model on the alm_hardware table via template, but am not able to...
Read more >When and How to Provide Job References [With Email ...
For some, though, it's not incredibly important, and they're not very ... A good general rule is to have your references printed out...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@abbazabacto this one will be fixed by this PR. Here’s the test.
It was fixed in the previous release. Now the template references can also be configured in
.condelyzer.js
because the tool doesn’t analyze the entire component tree.