I\'m attempting to use the ESLint linter with the Jest testing framework.
Jest tests run with some globals like jest, which I\'ll need to tell the lin
jest
In your .eslintignore file add the following value:
**/__tests__/
This should ignore all instances of the __tests__ directory and their children.