Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit 91efcfa

Browse files
committed
Disable import/no-extraneous-dependencies
This rule can't be configured to account for the 'atom' dependency being resolvable but not listed.
1 parent 67b7fda commit 91efcfa

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,19 @@
3737
"eslintConfig": {
3838
"rules": {
3939
"comma-dangle": [
40-
2,
40+
"error",
4141
"never"
4242
],
43-
"global-require": 0,
43+
"global-require": "off",
4444
"import/no-unresolved": [
45-
2,
45+
"error",
4646
{
4747
"ignore": [
4848
"atom"
4949
]
5050
}
51-
]
51+
],
52+
"import/no-extraneous-dependencies": "off"
5253
},
5354
"extends": "airbnb-base",
5455
"globals": {

0 commit comments

Comments
 (0)