@zinkawaii/eslint-config 0.1.7 → 0.1.9
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.cjs +7 -9
- package/dist/index.js +7 -9
- package/package.json +14 -12
package/dist/index.cjs
CHANGED
@@ -37,6 +37,7 @@ var patch_default = prefixary({
|
|
37
37
|
"antfu/curly": "off",
|
38
38
|
"antfu/if-newline": "off",
|
39
39
|
"antfu/no-import-dist": "off",
|
40
|
+
"antfu/no-top-level-await": "off",
|
40
41
|
"antfu/top-level-function": "off",
|
41
42
|
"node/prefer-global/process": "off",
|
42
43
|
"perfectionist/sort-imports": ["warn", {
|
@@ -52,12 +53,11 @@ var patch_default = prefixary({
|
|
52
53
|
"unknown"
|
53
54
|
],
|
54
55
|
internalPattern: [
|
55
|
-
"
|
56
|
-
"
|
57
|
-
"
|
58
|
-
"
|
59
|
-
"
|
60
|
-
"~~/**"
|
56
|
+
"#.*",
|
57
|
+
"@/.*",
|
58
|
+
"@@/.*",
|
59
|
+
"~/.*",
|
60
|
+
"~~/.*"
|
61
61
|
],
|
62
62
|
newlinesBetween: "never"
|
63
63
|
}],
|
@@ -207,9 +207,7 @@ var standard_default = prefixary({
|
|
207
207
|
"no-lonely-if": "warn",
|
208
208
|
"no-loop-func": "warn",
|
209
209
|
"no-magic-numbers": "off",
|
210
|
-
"no-multi-assign":
|
211
|
-
ignoreNonDeclaration: true
|
212
|
-
}],
|
210
|
+
"no-multi-assign": "off",
|
213
211
|
"no-multi-str": "warn",
|
214
212
|
"no-negated-condition": "off",
|
215
213
|
"no-nested-ternary": "off",
|
package/dist/index.js
CHANGED
@@ -12,6 +12,7 @@ var patch_default = prefixary({
|
|
12
12
|
"antfu/curly": "off",
|
13
13
|
"antfu/if-newline": "off",
|
14
14
|
"antfu/no-import-dist": "off",
|
15
|
+
"antfu/no-top-level-await": "off",
|
15
16
|
"antfu/top-level-function": "off",
|
16
17
|
"node/prefer-global/process": "off",
|
17
18
|
"perfectionist/sort-imports": ["warn", {
|
@@ -27,12 +28,11 @@ var patch_default = prefixary({
|
|
27
28
|
"unknown"
|
28
29
|
],
|
29
30
|
internalPattern: [
|
30
|
-
"
|
31
|
-
"
|
32
|
-
"
|
33
|
-
"
|
34
|
-
"
|
35
|
-
"~~/**"
|
31
|
+
"#.*",
|
32
|
+
"@/.*",
|
33
|
+
"@@/.*",
|
34
|
+
"~/.*",
|
35
|
+
"~~/.*"
|
36
36
|
],
|
37
37
|
newlinesBetween: "never"
|
38
38
|
}],
|
@@ -182,9 +182,7 @@ var standard_default = prefixary({
|
|
182
182
|
"no-lonely-if": "warn",
|
183
183
|
"no-loop-func": "warn",
|
184
184
|
"no-magic-numbers": "off",
|
185
|
-
"no-multi-assign":
|
186
|
-
ignoreNonDeclaration: true
|
187
|
-
}],
|
185
|
+
"no-multi-assign": "off",
|
188
186
|
"no-multi-str": "warn",
|
189
187
|
"no-negated-condition": "off",
|
190
188
|
"no-nested-ternary": "off",
|
package/package.json
CHANGED
@@ -1,16 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zinkawaii/eslint-config",
|
3
|
-
"
|
4
|
-
"
|
3
|
+
"type": "module",
|
4
|
+
"version": "0.1.9",
|
5
5
|
"author": "KazariEX",
|
6
|
+
"license": "MIT",
|
6
7
|
"repository": "KazariEX/eslint-config",
|
7
|
-
"type": "module",
|
8
|
-
"files": [
|
9
|
-
"dist",
|
10
|
-
"index.d.ts"
|
11
|
-
],
|
12
|
-
"main": "./dist/index.js",
|
13
|
-
"types": "./index.d.ts",
|
14
8
|
"exports": {
|
15
9
|
".": {
|
16
10
|
"types": "./index.d.ts",
|
@@ -18,14 +12,22 @@
|
|
18
12
|
"require": "./dist/index.cjs"
|
19
13
|
}
|
20
14
|
},
|
15
|
+
"main": "./dist/index.js",
|
16
|
+
"types": "./index.d.ts",
|
17
|
+
"files": [
|
18
|
+
"dist",
|
19
|
+
"index.d.ts"
|
20
|
+
],
|
21
21
|
"devDependencies": {
|
22
|
-
"@antfu/eslint-config": "^3.
|
23
|
-
"
|
24
|
-
"
|
22
|
+
"@antfu/eslint-config": "^3.11.2",
|
23
|
+
"bumpp": "^9.8.1",
|
24
|
+
"eslint": "^9.16.0",
|
25
|
+
"tsup": "^8.3.5"
|
25
26
|
},
|
26
27
|
"scripts": {
|
27
28
|
"build": "tsup",
|
28
29
|
"watch": "tsup --watch",
|
30
|
+
"release": "bumpp --no-push -c \"release: v%s\"",
|
29
31
|
"eslint": "eslint ."
|
30
32
|
}
|
31
33
|
}
|