Skip to content
This repository has been archived by the owner on Mar 29, 2020. It is now read-only.

Commit

Permalink
fix(jest): fix "jest/globals" is unknown
Browse files Browse the repository at this point in the history
'jest/globals' env now is unknown for eslint. Used 'jest' instead like it was suggested here jest-community/eslint-plugin-jest#44 (comment)
  • Loading branch information
binchik authored Jan 28, 2019
1 parent 96b540d commit b2ff8be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-config/jest.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
plugins: ['jest'],
env: {
'jest/globals': true,
jest: true,
},
rules: {
'max-nested-callbacks': 'off',
Expand Down

0 comments on commit b2ff8be

Please sign in to comment.