We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I setup an object like
{ new: 'new', old: 'old' }
my eslint fails with a ambiguous error [Error - 11:12:01 PM] TypeError: Cannot read property 'name' of undefined. This is not a eslint failure but a broken check on https://github.com/Gillespie59/eslint-plugin-angular/blob/master/rules/avoid-scope-typos.js#L27.
[Error - 11:12:01 PM] TypeError: Cannot read property 'name' of undefined
An easy fix I applied for myself is adding another check if node.parent.object exists.
node.parent.object
The text was updated successfully, but these errors were encountered:
Same problem causes another issue #507 Both will be fixed with #554
Sorry, something went wrong.
@Gillespie59 Any reason my PR is not getting through CI it's been sitting there for 3 months now
I will look into this as soon as I have time! The PR looks good! I just need to test it and merge it.
No branches or pull requests
When I setup an object like
my eslint fails with a ambiguous error
[Error - 11:12:01 PM] TypeError: Cannot read property 'name' of undefined
. This is not a eslint failure but a broken check on https://github.com/Gillespie59/eslint-plugin-angular/blob/master/rules/avoid-scope-typos.js#L27.An easy fix I applied for myself is adding another check if
node.parent.object
exists.The text was updated successfully, but these errors were encountered: