You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a file that is using jQuery, so I added an /* eslint-ignore ember/no-jquery */ at the top, to disable it for the whole file.
However, it still errors until I add an eslint-disable-next-line declaration right before the jQuery usage.
The text was updated successfully, but these errors were encountered:
Note that the reason the above comment style is needed for this particular rule is that this rule does a search for jQuery references as soon as it sees the Program node for the file (before any line-specific disable comment would have been applied):
I have a file that is using jQuery, so I added an
/* eslint-ignore ember/no-jquery */
at the top, to disable it for the whole file.However, it still errors until I add an
eslint-disable-next-line
declaration right before the jQuery usage.The text was updated successfully, but these errors were encountered: