Skip to content

Commit 85fb424

Browse files
fix: turn off import/no-cycle
1 parent 50afe24 commit 85fb424

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/plugins/import.ts

+8-6
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,14 @@ export const settings: Linter.Config = {
4949
},
5050
],
5151
"import/no-commonjs": "off",
52-
"import/no-cycle": [
53-
"error",
54-
{
55-
ignoreExternal: true,
56-
},
57-
],
52+
// Should be safe when bundling.
53+
"import/no-cycle": "off",
54+
// "import/no-cycle": [
55+
// "error",
56+
// {
57+
// ignoreExternal: true,
58+
// },
59+
// ],
5860
"import/no-default-export": "off",
5961
"import/no-deprecated": "warn",
6062
"import/no-duplicates": "error",

0 commit comments

Comments
 (0)