Skip to content

Commit

Permalink
feat: turn off jest/padding-around-expect-groups
Browse files Browse the repository at this point in the history
  • Loading branch information
dcroote committed Aug 29, 2024
1 parent f328fc2 commit aaadf11
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/jest.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit aaadf11

Please sign in to comment.