We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8c0cec commit a25bd4aCopy full SHA for a25bd4a
.eslintrc.yml
@@ -110,9 +110,7 @@ rules:
110
max-statements-per-line:
111
- 2
112
- max: 2
113
- import/max-dependencies:
114
- - 2
115
- - ignoreTypeImports: true
+ import/max-dependencies: 2
116
complexity:
117
118
- 4
@@ -1291,6 +1289,11 @@ overrides:
1291
1289
skipBlankLines: true
1292
1290
skipComments: true
1293
+ # Ignore Type imports too
+ import/max-dependencies:
1294
+ - 2
1295
+ - ignoreTypeImports: true
1296
+
1297
# TypeScript already checks for missing imports.
1298
# Also this does not work when importing:
1299
# - A `*.d.ts` without a sibling `.js`
0 commit comments