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
I solved the problem REF
Run
# For Yarn yarn add eslint-plugin-jest -D # For NPM npm i eslint-plugin-jest -D
And then add in your .eslintrc file
.eslintrc
{ "extends": ["airbnb","plugin:jest/recommended"], }