Skip to content

Commit

Permalink
fix: rebases from latest
Browse files Browse the repository at this point in the history
  • Loading branch information
brianlmacdonald committed Mar 5, 2018
2 parents 1e895ee + 6c3d40d commit 88413a0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/rules/no-jest-import.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ doesn't export anything in the first place.

This rule reports on any importing of Jest.

To name a few: `var jest = require('jest');` `const jest = require('jest');`
`import jest from 'jest';` `import {jest as test} from 'jest';`
To name a few:

* `var jest = require('jest');`
* `const jest = require('jest');`
* `import jest from 'jest';`
* `import {jest as test} from 'jest';`

There is no correct usage of this code, other than to not import `jest` in the
first place.
Expand Down

0 comments on commit 88413a0

Please sign in to comment.