diff --git a/eslint-remote-tester.config.ts b/eslint-remote-tester.config.ts index cfd7be073..db539b168 100644 --- a/eslint-remote-tester.config.ts +++ b/eslint-remote-tester.config.ts @@ -27,6 +27,11 @@ const config: Config = { }, }, extends: ['plugin:jest/all'], + rules: { + // this requires type information, which is not really feasible when + // linting a bunch of randomly picked open-source js & ts projects + 'jest/unbound-method': 'off', + }, }, };