@sxzz/eslint-config 7.2.3 → 7.2.5
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/index.js +2 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -686,11 +686,7 @@ const specialCases = () => [
|
|
|
686
686
|
rules: { "unicorn/filename-case": "off" }
|
|
687
687
|
},
|
|
688
688
|
{
|
|
689
|
-
files: [
|
|
690
|
-
GLOB_VUE,
|
|
691
|
-
GLOB_JSX,
|
|
692
|
-
GLOB_TSX
|
|
693
|
-
],
|
|
689
|
+
files: [GLOB_JSX, GLOB_TSX],
|
|
694
690
|
name: "sxzz/special/components",
|
|
695
691
|
rules: { "unicorn/no-anonymous-default-export": "off" }
|
|
696
692
|
}
|
|
@@ -789,6 +785,7 @@ const unicorn = () => [{
|
|
|
789
785
|
"unicorn/numeric-separators-style": "off",
|
|
790
786
|
"unicorn/prefer-module": "off",
|
|
791
787
|
"unicorn/prefer-query-selector": "error",
|
|
788
|
+
"unicorn/prefer-ternary": "off",
|
|
792
789
|
"unicorn/prefer-top-level-await": "off",
|
|
793
790
|
"unicorn/require-module-specifiers": "off"
|
|
794
791
|
}
|