From aaadf1137d5dffb387009dabbecbccb52d69fdca Mon Sep 17 00:00:00 2001 From: Derek Croote Date: Wed, 28 Aug 2024 22:14:24 -0700 Subject: [PATCH] feat: turn off jest/padding-around-expect-groups --- src/jest.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/jest.js b/src/jest.js index 8f9c17d..ac29a1a 100644 --- a/src/jest.js +++ b/src/jest.js @@ -20,6 +20,7 @@ module.exports = { rules: { 'jest/max-expects': 'off', // Limiting expect statements is beneficial, but enforcing a strict count can be restrictive. 'jest/no-hooks': 'off', // Would be time consuming to implement in existing repos. + 'jest/padding-around-expect-groups': 'off', // Adds a lot of excess whitespace 'jest/prefer-each': 'off', // We find traditional for-loops more readable in certain contexts. 'jest/prefer-expect-assertions': 'off', // While useful, enforcing this can lead to verbose tests. 'jest/prefer-importing-jest-globals': 'off', // This would be very bothersome for existing repos.