@jsse/eslint-config 0.2.11 → 0.2.12
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/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.cjs +10 -0
- package/dist/index.js +10 -0
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
package/dist/cli.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -11171,7 +11171,17 @@ var perfectionist = async () => {
|
|
|
11171
11171
|
"perfectionist/sort-imports": [
|
|
11172
11172
|
"error",
|
|
11173
11173
|
{
|
|
11174
|
+
customGroups: {
|
|
11175
|
+
type: {
|
|
11176
|
+
react: ["react", "react-*"]
|
|
11177
|
+
},
|
|
11178
|
+
value: {
|
|
11179
|
+
react: ["react", "react-*"]
|
|
11180
|
+
}
|
|
11181
|
+
},
|
|
11174
11182
|
groups: [
|
|
11183
|
+
"react",
|
|
11184
|
+
// react and react-* packages come first if they exist
|
|
11175
11185
|
"type",
|
|
11176
11186
|
"builtin",
|
|
11177
11187
|
"external",
|
package/dist/index.js
CHANGED
|
@@ -11099,7 +11099,17 @@ var perfectionist = async () => {
|
|
|
11099
11099
|
"perfectionist/sort-imports": [
|
|
11100
11100
|
"error",
|
|
11101
11101
|
{
|
|
11102
|
+
customGroups: {
|
|
11103
|
+
type: {
|
|
11104
|
+
react: ["react", "react-*"]
|
|
11105
|
+
},
|
|
11106
|
+
value: {
|
|
11107
|
+
react: ["react", "react-*"]
|
|
11108
|
+
}
|
|
11109
|
+
},
|
|
11102
11110
|
groups: [
|
|
11111
|
+
"react",
|
|
11112
|
+
// react and react-* packages come first if they exist
|
|
11103
11113
|
"type",
|
|
11104
11114
|
"builtin",
|
|
11105
11115
|
"external",
|
package/package.json
CHANGED