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
no-global-jquery errors based on the following snippet:
function firstRowText($) { return $('table tbody tr td:first-child').text().replace(/\s/g, ''); }
This is not a global instance, so the rule should not error here. I see 2 quick workarounds:
//eslint-disable-next-line ember/no-global-jquery
The text was updated successfully, but these errors were encountered:
I'd prefer:
Sorry, something went wrong.
Good catch, thank you for reporting!
anytime!
no-jquery
Fixed by #1063 and #1066.
no-global-jquery
Successfully merging a pull request may close this issue.
no-global-jquery errors based on the following snippet:
This is not a global instance, so the rule should not error here.
I see 2 quick workarounds:
//eslint-disable-next-line ember/no-global-jquery
before the lineThe text was updated successfully, but these errors were encountered: