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
Some rules break when we use type assertions (e.g. document.querySelector('td') is invalid, but (document as any).querySelector('td') is considered valid. In order to avoid false negatives, we should update the rules to account for type assertions.
The text was updated successfully, but these errors were encountered:
Some rules break when we use type assertions (e.g.
document.querySelector('td')
is invalid, but(document as any).querySelector('td')
is considered valid. In order to avoid false negatives, we should update the rules to account for type assertions.The text was updated successfully, but these errors were encountered: