File tree Expand file tree Collapse file tree 6 files changed +1
-108
lines changed Expand file tree Collapse file tree 6 files changed +1
-108
lines changed Original file line number Diff line number Diff line change @@ -217,7 +217,6 @@ installations requiring long-term consistency.
217
217
| [ no-identical-title] ( docs/rules/no-identical-title.md ) | Disallow identical titles | ![ recommended] [ ] | |
218
218
| [ no-interpolation-in-snapshots] ( docs/rules/no-interpolation-in-snapshots.md ) | Disallow string interpolation inside snapshots | ![ recommended] [ ] | |
219
219
| [ no-jasmine-globals] ( docs/rules/no-jasmine-globals.md ) | Disallow Jasmine globals | ![ recommended] [ ] | ![ fixable] [ ] |
220
- | [ no-jest-import] ( docs/rules/no-jest-import.md ) | Disallow importing Jest | ![ recommended] [ ] | |
221
220
| [ no-large-snapshots] ( docs/rules/no-large-snapshots.md ) | disallow large snapshots | | |
222
221
| [ no-mocks-import] ( docs/rules/no-mocks-import.md ) | Disallow manually importing from ` __mocks__ ` | ![ recommended] [ ] | |
223
222
| [ no-restricted-matchers] ( docs/rules/no-restricted-matchers.md ) | Disallow specific matchers & modifiers | | |
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ exports[`rules should export configs that refer to actual rules 1`] = `
28
28
" jest/no-identical-title" : " error" ,
29
29
" jest/no-interpolation-in-snapshots" : " error" ,
30
30
" jest/no-jasmine-globals" : " error" ,
31
- " jest/no-jest-import" : " error" ,
32
31
" jest/no-large-snapshots" : " error" ,
33
32
" jest/no-mocks-import" : " error" ,
34
33
" jest/no-restricted-matchers" : " error" ,
@@ -80,7 +79,6 @@ exports[`rules should export configs that refer to actual rules 1`] = `
80
79
" jest/no-identical-title" : " error" ,
81
80
" jest/no-interpolation-in-snapshots" : " error" ,
82
81
" jest/no-jasmine-globals" : " error" ,
83
- " jest/no-jest-import" : " error" ,
84
82
" jest/no-mocks-import" : " error" ,
85
83
" jest/no-standalone-expect" : " error" ,
86
84
" jest/no-test-prefixes" : " error" ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { existsSync } from 'fs';
2
2
import { resolve } from 'path' ;
3
3
import plugin from '../' ;
4
4
5
- const numberOfRules = 50 ;
5
+ const numberOfRules = 49 ;
6
6
const ruleNames = Object . keys ( plugin . rules ) ;
7
7
const deprecatedRules = Object . entries ( plugin . rules )
8
8
. filter ( ( [ , rule ] ) => rule . meta . deprecated )
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments