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
For longer rule names, I prefer placing the comment on top so it doesn't get lost. e.g.
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion, @typescript-eslint/no-unnecessary-type-assertion -- The build fails if this is undefined, so `!` is appropriate
vs
// The build fails if this is undefined, so `!` is appropriate// eslint-disable-next-line @typescript-eslint/no-non-null-assertion, @typescript-eslint/no-unnecessary-type-assertion
The text was updated successfully, but these errors were encountered:
For longer rule names, I prefer placing the comment on top so it doesn't get lost. e.g.
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion, @typescript-eslint/no-unnecessary-type-assertion -- The build fails if this is undefined, so `!` is appropriate
vs
The text was updated successfully, but these errors were encountered: