From 8dea0f640e111e5d3a447ebd714750752dd4fa05 Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Sat, 10 Sep 2022 07:52:19 +1200 Subject: [PATCH] ci: disable `jest/unbound-method` in smoke test --- eslint-remote-tester.config.ts | 5 +++++ 1 file changed, 5 insertions(+) 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', + }, }, };