@@ -20,12 +20,8 @@ const banMatchers = matchers => {
2020
2121/** @type {import('eslint').Linter.Config } */
2222const config = {
23- plugins : [ 'jest' , 'jest-formatting' ] ,
24- extends : [
25- 'plugin:jest/recommended' ,
26- 'plugin:jest/style' ,
27- 'plugin:jest-formatting/recommended'
28- ] ,
23+ plugins : [ 'jest' ] ,
24+ extends : [ 'plugin:jest/recommended' , 'plugin:jest/style' ] ,
2925 rules : {
3026 '@typescript-eslint/unbound-method' : 'off' ,
3127 'jest/consistent-test-it' : 'error' ,
@@ -62,7 +58,14 @@ const config = {
6258 'jest/require-to-throw-message' : 'error' ,
6359 'jest/require-top-level-describe' : 'error' ,
6460 'jest/unbound-method' : 'error' ,
65- 'jest/valid-title' : 'error'
61+ 'jest/valid-title' : 'error' ,
62+
63+ 'jest/padding-around-after-all-blocks' : 'error' ,
64+ 'jest/padding-around-after-each-blocks' : 'error' ,
65+ 'jest/padding-around-before-all-blocks' : 'error' ,
66+ 'jest/padding-around-before-each-blocks' : 'error' ,
67+ 'jest/padding-around-describe-blocks' : 'error' ,
68+ 'jest/padding-around-test-blocks' : 'error'
6669 }
6770} ;
6871
0 commit comments