@jsse/eslint-config 0.2.28 → 0.2.29
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/CHANGELOG.md +7 -0
- package/dist/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/dist/esm/configs/perfectionist.js +3 -3
- package/dist/esm/generated/version.d.ts +1 -1
- package/dist/esm/generated/version.js +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.d.cts +371 -295
- package/dist/index.d.ts +371 -295
- package/dist/index.js +4 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/cli.cjs
CHANGED
package/dist/cli.js
CHANGED
|
@@ -22,10 +22,10 @@ export const perfectionist = async () => {
|
|
|
22
22
|
{
|
|
23
23
|
customGroups: {
|
|
24
24
|
type: {
|
|
25
|
-
react: ["react", "react
|
|
25
|
+
react: ["^react$", "^react-.+", "^react-.+/.+$"],
|
|
26
26
|
},
|
|
27
27
|
value: {
|
|
28
|
-
react: ["react", "react
|
|
28
|
+
react: ["^react$", "^react-.+", "^react-.+/.+$"],
|
|
29
29
|
},
|
|
30
30
|
},
|
|
31
31
|
groups: [
|
|
@@ -40,7 +40,7 @@ export const perfectionist = async () => {
|
|
|
40
40
|
"object",
|
|
41
41
|
"unknown",
|
|
42
42
|
],
|
|
43
|
-
internalPattern: ["
|
|
43
|
+
internalPattern: ["^~/.+", "^@/.+"],
|
|
44
44
|
newlinesBetween: "ignore",
|
|
45
45
|
order: "asc",
|
|
46
46
|
type: "natural",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "0.2.
|
|
1
|
+
export declare const VERSION = "0.2.29";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "0.2.
|
|
1
|
+
export const VERSION = "0.2.29";
|
package/dist/index.cjs
CHANGED
|
@@ -12043,10 +12043,10 @@ var perfectionist = async () => {
|
|
|
12043
12043
|
{
|
|
12044
12044
|
customGroups: {
|
|
12045
12045
|
type: {
|
|
12046
|
-
react: ["react", "react
|
|
12046
|
+
react: ["^react$", "^react-.+", "^react-.+/.+$"]
|
|
12047
12047
|
},
|
|
12048
12048
|
value: {
|
|
12049
|
-
react: ["react", "react
|
|
12049
|
+
react: ["^react$", "^react-.+", "^react-.+/.+$"]
|
|
12050
12050
|
}
|
|
12051
12051
|
},
|
|
12052
12052
|
groups: [
|
|
@@ -12062,7 +12062,7 @@ var perfectionist = async () => {
|
|
|
12062
12062
|
"object",
|
|
12063
12063
|
"unknown"
|
|
12064
12064
|
],
|
|
12065
|
-
internalPattern: ["
|
|
12065
|
+
internalPattern: ["^~/.+", "^@/.+"],
|
|
12066
12066
|
newlinesBetween: "ignore",
|
|
12067
12067
|
order: "asc",
|
|
12068
12068
|
type: "natural"
|
|
@@ -13483,7 +13483,7 @@ async function defineConfig(options = {}, ...userConfigs) {
|
|
|
13483
13483
|
}
|
|
13484
13484
|
|
|
13485
13485
|
// src/generated/version.ts
|
|
13486
|
-
var VERSION = "0.2.
|
|
13486
|
+
var VERSION = "0.2.29";
|
|
13487
13487
|
|
|
13488
13488
|
// src/presets.ts
|
|
13489
13489
|
var jsseReact = (options, ...configs) => {
|