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

Commit f887d56

Browse files
committed
fix(base): disable import/no-extraneous-dependencies rule with jest
1 parent f99cf3a commit f887d56

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/eslint-config/jest.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ module.exports = {
55
},
66
rules: {
77
'max-nested-callbacks': 'off',
8+
// https://github.com/benmosher/eslint-plugin-import
9+
'import/no-extraneous-dependencies': 'off',
810
// https://github.com/jest-community/eslint-plugin-jest
911
'jest/consistent-test-it': ['error', {fn: 'test', withinDescribe: 'it'}],
1012
'jest/lowercase-name': 'off',

0 commit comments

Comments
 (0)