@zinkawaii/eslint-config 0.1.8 → 0.1.10
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 +8 -8
- package/dist/index.js +5 -5
- package/package.json +6 -4
package/dist/index.cjs
CHANGED
@@ -17,11 +17,11 @@ var __copyProps = (to, from, except, desc) => {
|
|
17
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
18
18
|
|
19
19
|
// src/index.ts
|
20
|
-
var
|
21
|
-
__export(
|
22
|
-
default: () =>
|
20
|
+
var index_exports = {};
|
21
|
+
__export(index_exports, {
|
22
|
+
default: () => index_default
|
23
23
|
});
|
24
|
-
module.exports = __toCommonJS(
|
24
|
+
module.exports = __toCommonJS(index_exports);
|
25
25
|
|
26
26
|
// src/utils.ts
|
27
27
|
function prefixary(prefix, rules) {
|
@@ -37,7 +37,9 @@ 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",
|
42
|
+
"import/consistent-type-specifier-style": "off",
|
41
43
|
"node/prefer-global/process": "off",
|
42
44
|
"perfectionist/sort-imports": ["warn", {
|
43
45
|
groups: [
|
@@ -206,9 +208,7 @@ var standard_default = prefixary({
|
|
206
208
|
"no-lonely-if": "warn",
|
207
209
|
"no-loop-func": "warn",
|
208
210
|
"no-magic-numbers": "off",
|
209
|
-
"no-multi-assign":
|
210
|
-
ignoreNonDeclaration: true
|
211
|
-
}],
|
211
|
+
"no-multi-assign": "off",
|
212
212
|
"no-multi-str": "warn",
|
213
213
|
"no-negated-condition": "off",
|
214
214
|
"no-nested-ternary": "off",
|
@@ -758,7 +758,7 @@ var vue_default = prefixary("vue", {
|
|
758
758
|
});
|
759
759
|
|
760
760
|
// src/index.ts
|
761
|
-
var
|
761
|
+
var index_default = {
|
762
762
|
patch: patch_default,
|
763
763
|
recommended: recommended_default,
|
764
764
|
standard: standard_default,
|
package/dist/index.js
CHANGED
@@ -12,7 +12,9 @@ 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",
|
17
|
+
"import/consistent-type-specifier-style": "off",
|
16
18
|
"node/prefer-global/process": "off",
|
17
19
|
"perfectionist/sort-imports": ["warn", {
|
18
20
|
groups: [
|
@@ -181,9 +183,7 @@ var standard_default = prefixary({
|
|
181
183
|
"no-lonely-if": "warn",
|
182
184
|
"no-loop-func": "warn",
|
183
185
|
"no-magic-numbers": "off",
|
184
|
-
"no-multi-assign":
|
185
|
-
ignoreNonDeclaration: true
|
186
|
-
}],
|
186
|
+
"no-multi-assign": "off",
|
187
187
|
"no-multi-str": "warn",
|
188
188
|
"no-negated-condition": "off",
|
189
189
|
"no-nested-ternary": "off",
|
@@ -733,7 +733,7 @@ var vue_default = prefixary("vue", {
|
|
733
733
|
});
|
734
734
|
|
735
735
|
// src/index.ts
|
736
|
-
var
|
736
|
+
var index_default = {
|
737
737
|
patch: patch_default,
|
738
738
|
recommended: recommended_default,
|
739
739
|
standard: standard_default,
|
@@ -741,5 +741,5 @@ var src_default = {
|
|
741
741
|
vue: vue_default
|
742
742
|
};
|
743
743
|
export {
|
744
|
-
|
744
|
+
index_default as default
|
745
745
|
};
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zinkawaii/eslint-config",
|
3
3
|
"type": "module",
|
4
|
-
"version": "0.1.
|
4
|
+
"version": "0.1.10",
|
5
5
|
"author": "KazariEX",
|
6
6
|
"license": "MIT",
|
7
7
|
"repository": "KazariEX/eslint-config",
|
@@ -19,13 +19,15 @@
|
|
19
19
|
"index.d.ts"
|
20
20
|
],
|
21
21
|
"devDependencies": {
|
22
|
-
"@antfu/eslint-config": "^
|
23
|
-
"
|
24
|
-
"
|
22
|
+
"@antfu/eslint-config": "^4.1.0",
|
23
|
+
"bumpp": "^10.0.1",
|
24
|
+
"eslint": "^9.19.0",
|
25
|
+
"tsup": "^8.3.6"
|
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
|
}
|