@rebeccastevens/eslint-config 1.6.1 → 1.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/modern.cjs +8 -6
- package/dist/modern.mjs +8 -6
- package/package.json +1 -1
package/dist/modern.cjs
CHANGED
|
@@ -800,12 +800,14 @@ const settings$7 = {
|
|
|
800
800
|
},
|
|
801
801
|
],
|
|
802
802
|
"import/no-commonjs": "off",
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
803
|
+
// Should be safe when bundling.
|
|
804
|
+
"import/no-cycle": "off",
|
|
805
|
+
// "import/no-cycle": [
|
|
806
|
+
// "error",
|
|
807
|
+
// {
|
|
808
|
+
// ignoreExternal: true,
|
|
809
|
+
// },
|
|
810
|
+
// ],
|
|
809
811
|
"import/no-default-export": "off",
|
|
810
812
|
"import/no-deprecated": "warn",
|
|
811
813
|
"import/no-duplicates": "error",
|
package/dist/modern.mjs
CHANGED
|
@@ -798,12 +798,14 @@ const settings$7 = {
|
|
|
798
798
|
},
|
|
799
799
|
],
|
|
800
800
|
"import/no-commonjs": "off",
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
801
|
+
// Should be safe when bundling.
|
|
802
|
+
"import/no-cycle": "off",
|
|
803
|
+
// "import/no-cycle": [
|
|
804
|
+
// "error",
|
|
805
|
+
// {
|
|
806
|
+
// ignoreExternal: true,
|
|
807
|
+
// },
|
|
808
|
+
// ],
|
|
807
809
|
"import/no-default-export": "off",
|
|
808
810
|
"import/no-deprecated": "warn",
|
|
809
811
|
"import/no-duplicates": "error",
|