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
when using eslint-enable, there's already an eslint-disable comment with the description on it so there's no reason to provide another description when re-enabling it.
describe('any',()=>{/* eslint-disable @typescript-eslint/no-explicit-any -- testing the any type */test('pass',()=>{exactly<any>()(any)})test('fail',()=>{// @ts-expect-error doesn't matchexactly<any>()(number)// @ts-expect-error doesn't matchexactly<number>()(any)})/* eslint-enable @typescript-eslint/no-explicit-any -- testing the any type */})
The text was updated successfully, but these errors were encountered:
when using
eslint-enable
, there's already aneslint-disable
comment with the description on it so there's no reason to provide another description when re-enabling it.The text was updated successfully, but these errors were encountered: