From f4587523493f54235ddd9adfcb3279c4217f833f Mon Sep 17 00:00:00 2001 From: "Simen A. W. Olsen" Date: Sun, 5 Mar 2023 12:33:38 +0100 Subject: [PATCH] feat: allow default exports for jest configs (#191) --- index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/index.js b/index.js index 8e84e33..260546e 100644 --- a/index.js +++ b/index.js @@ -95,5 +95,11 @@ module.exports = { '@typescript-eslint/no-var-requires': 'off', }, }, + { + files: 'jest.config.*', + rules: { + 'import/no-default-export': 'off', + }, + }, ], };