@ntnyq/eslint-config 2.0.0-beta.25 → 2.0.0-beta.26
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 +17 -17
- package/dist/index.d.cts +12 -7
- package/dist/index.d.ts +12 -7
- package/dist/index.js +48 -48
- package/package.json +16 -16
package/dist/index.cjs
CHANGED
|
@@ -65,13 +65,13 @@ __export(src_exports, {
|
|
|
65
65
|
markdown: () => markdown,
|
|
66
66
|
node: () => node,
|
|
67
67
|
ntnyq: () => ntnyq,
|
|
68
|
-
parserJsonc: () =>
|
|
68
|
+
parserJsonc: () => parserJsonc,
|
|
69
69
|
parserTs: () => parserTs,
|
|
70
|
-
parserVue: () =>
|
|
71
|
-
parserYaml: () =>
|
|
70
|
+
parserVue: () => parserVue,
|
|
71
|
+
parserYaml: () => parserYaml,
|
|
72
72
|
pluginComments: () => import_eslint_plugin_eslint_comments.default,
|
|
73
|
-
pluginImport: () =>
|
|
74
|
-
pluginJsonc: () =>
|
|
73
|
+
pluginImport: () => pluginImport,
|
|
74
|
+
pluginJsonc: () => pluginJsonc,
|
|
75
75
|
pluginMarkdown: () => import_eslint_plugin_markdown.default,
|
|
76
76
|
pluginNode: () => import_eslint_plugin_n.default,
|
|
77
77
|
pluginPrettier: () => import_eslint_plugin_prettier.default,
|
|
@@ -161,20 +161,20 @@ var import_local_pkg = require("local-pkg");
|
|
|
161
161
|
var import_eslint_define_config2 = require("eslint-define-config");
|
|
162
162
|
|
|
163
163
|
// src/plugins.ts
|
|
164
|
-
var pluginYaml = __toESM(require("eslint-plugin-yml"), 1);
|
|
165
164
|
var import_eslint_plugin_n = __toESM(require("eslint-plugin-n"), 1);
|
|
166
|
-
var import_eslint_plugin_i = __toESM(require("eslint-plugin-i"), 1);
|
|
167
165
|
var import_eslint_plugin_vue = __toESM(require("eslint-plugin-vue"), 1);
|
|
168
|
-
var import_eslint_plugin_jsonc = __toESM(require("eslint-plugin-jsonc"), 1);
|
|
169
166
|
var import_eslint_plugin = __toESM(require("@unocss/eslint-plugin"), 1);
|
|
170
167
|
var import_eslint_plugin_unicorn = __toESM(require("eslint-plugin-unicorn"), 1);
|
|
171
168
|
var import_eslint_plugin_prettier = __toESM(require("eslint-plugin-prettier"), 1);
|
|
172
169
|
var import_eslint_plugin_markdown = __toESM(require("eslint-plugin-markdown"), 1);
|
|
173
170
|
var import_eslint_plugin_eslint_comments = __toESM(require("eslint-plugin-eslint-comments"), 1);
|
|
174
171
|
var import_eslint_plugin2 = __toESM(require("@typescript-eslint/eslint-plugin"), 1);
|
|
175
|
-
var
|
|
176
|
-
var
|
|
177
|
-
var
|
|
172
|
+
var pluginYaml = __toESM(require("eslint-plugin-yml"), 1);
|
|
173
|
+
var pluginJsonc = __toESM(require("eslint-plugin-jsonc"), 1);
|
|
174
|
+
var pluginImport = __toESM(require("eslint-plugin-import-x"), 1);
|
|
175
|
+
var parserYaml = __toESM(require("yaml-eslint-parser"), 1);
|
|
176
|
+
var parserVue = __toESM(require("vue-eslint-parser"), 1);
|
|
177
|
+
var parserJsonc = __toESM(require("jsonc-eslint-parser"), 1);
|
|
178
178
|
var parserTs = __toESM(require("@typescript-eslint/parser"), 1);
|
|
179
179
|
|
|
180
180
|
// src/configs/typescript.ts
|
|
@@ -276,7 +276,7 @@ var vue = (0, import_eslint_define_config2.defineFlatConfig)([
|
|
|
276
276
|
"@typescript-eslint": import_eslint_plugin2.default
|
|
277
277
|
},
|
|
278
278
|
languageOptions: {
|
|
279
|
-
parser:
|
|
279
|
+
parser: parserVue,
|
|
280
280
|
parserOptions: {
|
|
281
281
|
parser: "@typescript-eslint/parser",
|
|
282
282
|
sourceType: "module",
|
|
@@ -305,7 +305,7 @@ var yml = (0, import_eslint_define_config3.defineFlatConfig)([
|
|
|
305
305
|
{
|
|
306
306
|
files: [GLOB_YAML],
|
|
307
307
|
languageOptions: {
|
|
308
|
-
parser:
|
|
308
|
+
parser: parserYaml
|
|
309
309
|
},
|
|
310
310
|
plugins: {
|
|
311
311
|
yml: pluginYaml
|
|
@@ -541,13 +541,13 @@ var jsonc = (0, import_eslint_define_config6.defineFlatConfig)([
|
|
|
541
541
|
{
|
|
542
542
|
files: [GLOB_JSON, GLOB_JSON5, GLOB_JSONC, "**/*rc"],
|
|
543
543
|
plugins: {
|
|
544
|
-
jsonc:
|
|
544
|
+
jsonc: pluginJsonc
|
|
545
545
|
},
|
|
546
546
|
languageOptions: {
|
|
547
|
-
parser:
|
|
547
|
+
parser: parserJsonc
|
|
548
548
|
},
|
|
549
549
|
rules: {
|
|
550
|
-
...
|
|
550
|
+
...pluginJsonc.configs["recommended-with-jsonc"].rules,
|
|
551
551
|
"jsonc/array-bracket-spacing": ["error", "never"],
|
|
552
552
|
"jsonc/comma-dangle": ["error", "never"],
|
|
553
553
|
"jsonc/comma-style": ["error", "last"],
|
|
@@ -583,7 +583,7 @@ var import_eslint_define_config7 = require("eslint-define-config");
|
|
|
583
583
|
var imports = (0, import_eslint_define_config7.defineFlatConfig)([
|
|
584
584
|
{
|
|
585
585
|
plugins: {
|
|
586
|
-
import:
|
|
586
|
+
import: pluginImport
|
|
587
587
|
},
|
|
588
588
|
settings: {
|
|
589
589
|
"import/resolver": {
|
package/dist/index.d.cts
CHANGED
|
@@ -1,20 +1,25 @@
|
|
|
1
1
|
import * as eslint_define_config from 'eslint-define-config';
|
|
2
2
|
import { FlatESLintConfig } from 'eslint-define-config';
|
|
3
|
-
import * as eslintPluginYml from 'eslint-plugin-yml';
|
|
4
|
-
export { eslintPluginYml as pluginYaml };
|
|
5
3
|
export { default as pluginNode } from 'eslint-plugin-n';
|
|
6
|
-
export { default as pluginImport } from 'eslint-plugin-i';
|
|
7
4
|
export { default as pluginVue } from 'eslint-plugin-vue';
|
|
8
|
-
export { default as pluginJsonc } from 'eslint-plugin-jsonc';
|
|
9
5
|
export { default as pluginUnoCSS } from '@unocss/eslint-plugin';
|
|
10
6
|
export { default as pluginUnicorn } from 'eslint-plugin-unicorn';
|
|
11
7
|
export { default as pluginPrettier } from 'eslint-plugin-prettier';
|
|
12
8
|
export { default as pluginMarkdown } from 'eslint-plugin-markdown';
|
|
13
9
|
export { default as pluginComments } from 'eslint-plugin-eslint-comments';
|
|
14
10
|
export { default as pluginTs } from '@typescript-eslint/eslint-plugin';
|
|
15
|
-
|
|
16
|
-
export {
|
|
17
|
-
|
|
11
|
+
import * as eslintPluginYml from 'eslint-plugin-yml';
|
|
12
|
+
export { eslintPluginYml as pluginYaml };
|
|
13
|
+
import * as eslintPluginJsonc from 'eslint-plugin-jsonc';
|
|
14
|
+
export { eslintPluginJsonc as pluginJsonc };
|
|
15
|
+
import * as eslintPluginImportX from 'eslint-plugin-import-x';
|
|
16
|
+
export { eslintPluginImportX as pluginImport };
|
|
17
|
+
import * as yamlEslintParser from 'yaml-eslint-parser';
|
|
18
|
+
export { yamlEslintParser as parserYaml };
|
|
19
|
+
import * as vueEslintParser from 'vue-eslint-parser';
|
|
20
|
+
export { vueEslintParser as parserVue };
|
|
21
|
+
import * as jsoncEslintParser from 'jsonc-eslint-parser';
|
|
22
|
+
export { jsoncEslintParser as parserJsonc };
|
|
18
23
|
import * as parser from '@typescript-eslint/parser';
|
|
19
24
|
export { parser as parserTs };
|
|
20
25
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,20 +1,25 @@
|
|
|
1
1
|
import * as eslint_define_config from 'eslint-define-config';
|
|
2
2
|
import { FlatESLintConfig } from 'eslint-define-config';
|
|
3
|
-
import * as eslintPluginYml from 'eslint-plugin-yml';
|
|
4
|
-
export { eslintPluginYml as pluginYaml };
|
|
5
3
|
export { default as pluginNode } from 'eslint-plugin-n';
|
|
6
|
-
export { default as pluginImport } from 'eslint-plugin-i';
|
|
7
4
|
export { default as pluginVue } from 'eslint-plugin-vue';
|
|
8
|
-
export { default as pluginJsonc } from 'eslint-plugin-jsonc';
|
|
9
5
|
export { default as pluginUnoCSS } from '@unocss/eslint-plugin';
|
|
10
6
|
export { default as pluginUnicorn } from 'eslint-plugin-unicorn';
|
|
11
7
|
export { default as pluginPrettier } from 'eslint-plugin-prettier';
|
|
12
8
|
export { default as pluginMarkdown } from 'eslint-plugin-markdown';
|
|
13
9
|
export { default as pluginComments } from 'eslint-plugin-eslint-comments';
|
|
14
10
|
export { default as pluginTs } from '@typescript-eslint/eslint-plugin';
|
|
15
|
-
|
|
16
|
-
export {
|
|
17
|
-
|
|
11
|
+
import * as eslintPluginYml from 'eslint-plugin-yml';
|
|
12
|
+
export { eslintPluginYml as pluginYaml };
|
|
13
|
+
import * as eslintPluginJsonc from 'eslint-plugin-jsonc';
|
|
14
|
+
export { eslintPluginJsonc as pluginJsonc };
|
|
15
|
+
import * as eslintPluginImportX from 'eslint-plugin-import-x';
|
|
16
|
+
export { eslintPluginImportX as pluginImport };
|
|
17
|
+
import * as yamlEslintParser from 'yaml-eslint-parser';
|
|
18
|
+
export { yamlEslintParser as parserYaml };
|
|
19
|
+
import * as vueEslintParser from 'vue-eslint-parser';
|
|
20
|
+
export { vueEslintParser as parserVue };
|
|
21
|
+
import * as jsoncEslintParser from 'jsonc-eslint-parser';
|
|
22
|
+
export { jsoncEslintParser as parserJsonc };
|
|
18
23
|
import * as parser from '@typescript-eslint/parser';
|
|
19
24
|
export { parser as parserTs };
|
|
20
25
|
|
package/dist/index.js
CHANGED
|
@@ -68,20 +68,20 @@ import { getPackageInfoSync } from "local-pkg";
|
|
|
68
68
|
import { defineFlatConfig as defineFlatConfig2 } from "eslint-define-config";
|
|
69
69
|
|
|
70
70
|
// src/plugins.ts
|
|
71
|
-
import * as pluginYaml from "eslint-plugin-yml";
|
|
72
71
|
import { default as default2 } from "eslint-plugin-n";
|
|
73
|
-
import { default as default3 } from "eslint-plugin-
|
|
74
|
-
import { default as default4 } from "eslint-plugin
|
|
75
|
-
import { default as default5 } from "eslint-plugin-
|
|
76
|
-
import { default as default6 } from "
|
|
77
|
-
import { default as default7 } from "eslint-plugin-
|
|
78
|
-
import { default as default8 } from "eslint-plugin-
|
|
79
|
-
import { default as default9 } from "eslint-plugin
|
|
80
|
-
import
|
|
81
|
-
import
|
|
82
|
-
import
|
|
83
|
-
import
|
|
84
|
-
import
|
|
72
|
+
import { default as default3 } from "eslint-plugin-vue";
|
|
73
|
+
import { default as default4 } from "@unocss/eslint-plugin";
|
|
74
|
+
import { default as default5 } from "eslint-plugin-unicorn";
|
|
75
|
+
import { default as default6 } from "eslint-plugin-prettier";
|
|
76
|
+
import { default as default7 } from "eslint-plugin-markdown";
|
|
77
|
+
import { default as default8 } from "eslint-plugin-eslint-comments";
|
|
78
|
+
import { default as default9 } from "@typescript-eslint/eslint-plugin";
|
|
79
|
+
import * as pluginYaml from "eslint-plugin-yml";
|
|
80
|
+
import * as pluginJsonc from "eslint-plugin-jsonc";
|
|
81
|
+
import * as pluginImport from "eslint-plugin-import-x";
|
|
82
|
+
import * as parserYaml from "yaml-eslint-parser";
|
|
83
|
+
import * as parserVue from "vue-eslint-parser";
|
|
84
|
+
import * as parserJsonc from "jsonc-eslint-parser";
|
|
85
85
|
import * as parserTs from "@typescript-eslint/parser";
|
|
86
86
|
|
|
87
87
|
// src/configs/typescript.ts
|
|
@@ -96,11 +96,11 @@ var typescript = defineFlatConfig([
|
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
plugins: {
|
|
99
|
-
"@typescript-eslint":
|
|
99
|
+
"@typescript-eslint": default9
|
|
100
100
|
},
|
|
101
101
|
rules: {
|
|
102
|
-
...
|
|
103
|
-
...
|
|
102
|
+
...default9.configs.recommended.rules,
|
|
103
|
+
...default9.configs.stylistic.rules,
|
|
104
104
|
"@typescript-eslint/no-unused-vars": "error",
|
|
105
105
|
"@typescript-eslint/no-redeclare": "error",
|
|
106
106
|
"@typescript-eslint/consistent-type-imports": [
|
|
@@ -179,11 +179,11 @@ var vue = defineFlatConfig2([
|
|
|
179
179
|
{
|
|
180
180
|
files: [GLOB_VUE],
|
|
181
181
|
plugins: {
|
|
182
|
-
vue:
|
|
183
|
-
"@typescript-eslint":
|
|
182
|
+
vue: default3,
|
|
183
|
+
"@typescript-eslint": default9
|
|
184
184
|
},
|
|
185
185
|
languageOptions: {
|
|
186
|
-
parser:
|
|
186
|
+
parser: parserVue,
|
|
187
187
|
parserOptions: {
|
|
188
188
|
parser: "@typescript-eslint/parser",
|
|
189
189
|
sourceType: "module",
|
|
@@ -193,14 +193,14 @@ var vue = defineFlatConfig2([
|
|
|
193
193
|
}
|
|
194
194
|
}
|
|
195
195
|
},
|
|
196
|
-
processor:
|
|
196
|
+
processor: default3.processors[".vue"],
|
|
197
197
|
rules: {
|
|
198
198
|
...typescript[0].rules
|
|
199
199
|
}
|
|
200
200
|
},
|
|
201
201
|
{
|
|
202
202
|
plugins: {
|
|
203
|
-
vue:
|
|
203
|
+
vue: default3
|
|
204
204
|
},
|
|
205
205
|
rules: isVue3 ? vue3Rules : vue2Rules
|
|
206
206
|
}
|
|
@@ -212,7 +212,7 @@ var yml = defineFlatConfig3([
|
|
|
212
212
|
{
|
|
213
213
|
files: [GLOB_YAML],
|
|
214
214
|
languageOptions: {
|
|
215
|
-
parser:
|
|
215
|
+
parser: parserYaml
|
|
216
216
|
},
|
|
217
217
|
plugins: {
|
|
218
218
|
yml: pluginYaml
|
|
@@ -448,13 +448,13 @@ var jsonc = defineFlatConfig6([
|
|
|
448
448
|
{
|
|
449
449
|
files: [GLOB_JSON, GLOB_JSON5, GLOB_JSONC, "**/*rc"],
|
|
450
450
|
plugins: {
|
|
451
|
-
jsonc:
|
|
451
|
+
jsonc: pluginJsonc
|
|
452
452
|
},
|
|
453
453
|
languageOptions: {
|
|
454
|
-
parser:
|
|
454
|
+
parser: parserJsonc
|
|
455
455
|
},
|
|
456
456
|
rules: {
|
|
457
|
-
...
|
|
457
|
+
...pluginJsonc.configs["recommended-with-jsonc"].rules,
|
|
458
458
|
"jsonc/array-bracket-spacing": ["error", "never"],
|
|
459
459
|
"jsonc/comma-dangle": ["error", "never"],
|
|
460
460
|
"jsonc/comma-style": ["error", "last"],
|
|
@@ -490,7 +490,7 @@ import { defineFlatConfig as defineFlatConfig7 } from "eslint-define-config";
|
|
|
490
490
|
var imports = defineFlatConfig7([
|
|
491
491
|
{
|
|
492
492
|
plugins: {
|
|
493
|
-
import:
|
|
493
|
+
import: pluginImport
|
|
494
494
|
},
|
|
495
495
|
settings: {
|
|
496
496
|
"import/resolver": {
|
|
@@ -533,10 +533,10 @@ import { defineFlatConfig as defineFlatConfig8 } from "eslint-define-config";
|
|
|
533
533
|
var unocss = defineFlatConfig8([
|
|
534
534
|
{
|
|
535
535
|
plugins: {
|
|
536
|
-
"@unocss":
|
|
536
|
+
"@unocss": default4
|
|
537
537
|
},
|
|
538
538
|
rules: {
|
|
539
|
-
...
|
|
539
|
+
...default4.configs.recommended.rules
|
|
540
540
|
}
|
|
541
541
|
}
|
|
542
542
|
]);
|
|
@@ -546,7 +546,7 @@ import { defineFlatConfig as defineFlatConfig9 } from "eslint-define-config";
|
|
|
546
546
|
var unicorn = defineFlatConfig9([
|
|
547
547
|
{
|
|
548
548
|
plugins: {
|
|
549
|
-
unicorn:
|
|
549
|
+
unicorn: default5
|
|
550
550
|
},
|
|
551
551
|
rules: {
|
|
552
552
|
"unicorn/no-unsafe-regex": "off",
|
|
@@ -623,11 +623,11 @@ import { defineFlatConfig as defineFlatConfig10 } from "eslint-define-config";
|
|
|
623
623
|
var prettier = defineFlatConfig10([
|
|
624
624
|
{
|
|
625
625
|
plugins: {
|
|
626
|
-
prettier:
|
|
626
|
+
prettier: default6
|
|
627
627
|
},
|
|
628
628
|
rules: {
|
|
629
629
|
...prettierConfig.rules,
|
|
630
|
-
...
|
|
630
|
+
...default6.configs.recommended.rules,
|
|
631
631
|
"prettier/prettier": "warn"
|
|
632
632
|
}
|
|
633
633
|
}
|
|
@@ -639,7 +639,7 @@ var markdown = defineFlatConfig11([
|
|
|
639
639
|
{
|
|
640
640
|
files: [GLOB_MARKDOWN],
|
|
641
641
|
plugins: {
|
|
642
|
-
markdown:
|
|
642
|
+
markdown: default7
|
|
643
643
|
},
|
|
644
644
|
processor: "markdown/markdown"
|
|
645
645
|
},
|
|
@@ -653,10 +653,10 @@ var markdown = defineFlatConfig11([
|
|
|
653
653
|
}
|
|
654
654
|
},
|
|
655
655
|
plugins: {
|
|
656
|
-
"@typescript-eslint":
|
|
656
|
+
"@typescript-eslint": default9
|
|
657
657
|
},
|
|
658
658
|
rules: {
|
|
659
|
-
...
|
|
659
|
+
...default7.configs["recommended-legacy"].overrides[1].rules,
|
|
660
660
|
"no-undef": "off",
|
|
661
661
|
"no-alert": "off",
|
|
662
662
|
"no-console": "off",
|
|
@@ -681,10 +681,10 @@ import { defineFlatConfig as defineFlatConfig12 } from "eslint-define-config";
|
|
|
681
681
|
var comments = defineFlatConfig12([
|
|
682
682
|
{
|
|
683
683
|
plugins: {
|
|
684
|
-
"eslint-comments":
|
|
684
|
+
"eslint-comments": default8
|
|
685
685
|
},
|
|
686
686
|
rules: {
|
|
687
|
-
...
|
|
687
|
+
...default8.configs.recommended.rules,
|
|
688
688
|
"eslint-comments/disable-enable-pair": ["error", { allowWholeFile: true }]
|
|
689
689
|
}
|
|
690
690
|
}
|
|
@@ -1147,20 +1147,20 @@ export {
|
|
|
1147
1147
|
markdown,
|
|
1148
1148
|
node,
|
|
1149
1149
|
ntnyq,
|
|
1150
|
-
|
|
1150
|
+
parserJsonc,
|
|
1151
1151
|
parserTs,
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1152
|
+
parserVue,
|
|
1153
|
+
parserYaml,
|
|
1154
|
+
default8 as pluginComments,
|
|
1155
|
+
pluginImport,
|
|
1156
|
+
pluginJsonc,
|
|
1157
|
+
default7 as pluginMarkdown,
|
|
1158
1158
|
default2 as pluginNode,
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1159
|
+
default6 as pluginPrettier,
|
|
1160
|
+
default9 as pluginTs,
|
|
1161
|
+
default5 as pluginUnicorn,
|
|
1162
|
+
default4 as pluginUnoCSS,
|
|
1163
|
+
default3 as pluginVue,
|
|
1164
1164
|
pluginYaml,
|
|
1165
1165
|
prettier,
|
|
1166
1166
|
sortPackageJson,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ntnyq/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.0-beta.
|
|
4
|
+
"version": "2.0.0-beta.26",
|
|
5
5
|
"description": "ESLint flat config of ntnyq",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"eslint",
|
|
@@ -51,22 +51,22 @@
|
|
|
51
51
|
"eslint": "^8.57.0"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@eslint/js": "^
|
|
55
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
56
|
-
"@typescript-eslint/parser": "^7.
|
|
57
|
-
"@unocss/eslint-plugin": "^0.
|
|
54
|
+
"@eslint/js": "^9.0.0",
|
|
55
|
+
"@typescript-eslint/eslint-plugin": "^7.7.0",
|
|
56
|
+
"@typescript-eslint/parser": "^7.7.0",
|
|
57
|
+
"@unocss/eslint-plugin": "^0.59.3",
|
|
58
58
|
"eslint-config-prettier": "^9.1.0",
|
|
59
59
|
"eslint-define-config": "^2.1.0",
|
|
60
60
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
61
|
-
"eslint-plugin-
|
|
62
|
-
"eslint-plugin-jsonc": "^2.
|
|
61
|
+
"eslint-plugin-import-x": "^0.5.0",
|
|
62
|
+
"eslint-plugin-jsonc": "^2.15.1",
|
|
63
63
|
"eslint-plugin-markdown": "^4.0.1",
|
|
64
|
-
"eslint-plugin-n": "^
|
|
64
|
+
"eslint-plugin-n": "^17.2.1",
|
|
65
65
|
"eslint-plugin-prettier": "^5.1.3",
|
|
66
|
-
"eslint-plugin-unicorn": "^
|
|
67
|
-
"eslint-plugin-vue": "^9.
|
|
68
|
-
"eslint-plugin-yml": "^1.
|
|
69
|
-
"globals": "^
|
|
66
|
+
"eslint-plugin-unicorn": "^52.0.0",
|
|
67
|
+
"eslint-plugin-vue": "^9.25.0",
|
|
68
|
+
"eslint-plugin-yml": "^1.14.0",
|
|
69
|
+
"globals": "^15.0.0",
|
|
70
70
|
"jsonc-eslint-parser": "^2.4.0",
|
|
71
71
|
"local-pkg": "^0.5.0",
|
|
72
72
|
"prettier": "^3.2.5",
|
|
@@ -74,16 +74,16 @@
|
|
|
74
74
|
"yaml-eslint-parser": "^1.2.2"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@ntnyq/prettier-config": "^1.
|
|
78
|
-
"@types/node": "^20.
|
|
77
|
+
"@ntnyq/prettier-config": "^1.21.2",
|
|
78
|
+
"@types/node": "^20.12.7",
|
|
79
79
|
"bumpp": "^9.4.0",
|
|
80
|
-
"eslint": "^
|
|
80
|
+
"eslint": "^9.0.0",
|
|
81
81
|
"husky": "^9.0.11",
|
|
82
82
|
"nano-staged": "^0.8.0",
|
|
83
83
|
"npm-run-all": "^4.1.5",
|
|
84
84
|
"rimraf": "^5.0.5",
|
|
85
85
|
"tsup": "^8.0.2",
|
|
86
|
-
"typescript": "^5.4.
|
|
86
|
+
"typescript": "^5.4.5"
|
|
87
87
|
},
|
|
88
88
|
"engines": {
|
|
89
89
|
"node": ">=18.18"
|