Skip to content

Commit 97eb082

Browse files
Rajdeep Chandracastastrophe
Rajdeep Chandra
authored andcommitted
chore: updated import dependency check
1 parent e0f52a5 commit 97eb082

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

packages/.eslintrc.json

+14-1
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,26 @@
66
"es6": true
77
},
88
"parser": "@typescript-eslint/parser",
9-
"plugins": ["@typescript-eslint", "notice", "@spectrum-web-components"],
9+
"plugins": [
10+
"@typescript-eslint",
11+
"notice",
12+
"@spectrum-web-components",
13+
"import"
14+
],
1015
"extends": [
1116
"plugin:@typescript-eslint/recommended",
1217
"prettier",
1318
"plugin:lit-a11y/recommended"
1419
],
1520
"rules": {
21+
"import/no-extraneous-dependencies": [
22+
"error",
23+
{
24+
"devDependencies": false,
25+
"optionalDependencies": false,
26+
"peerDependencies": false
27+
}
28+
],
1629
"no-debugger": 2,
1730
"no-console": [
1831
"error",

0 commit comments

Comments
 (0)