Skip to content

Commit

Permalink
🧹 Disable lint warnings for tests (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
janjakubnanista authored Jan 19, 2024
1 parent ebddc88 commit 86d1f80
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/devtools/test/common/map.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ describe('common/map', () => {
const valueArbitrary = fc.anything()

describe.each(testCases)(`for %s`, (_, keyArbitrary, hash) => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
class TestMap extends AbstractMap<any, any> {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
protected override hash(key: any) {
return hash(key)
}
Expand Down

0 comments on commit 86d1f80

Please sign in to comment.