@oxlint/migrate 1.8.0 → 1.10.0
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/package.json.mjs
CHANGED
|
@@ -116,6 +116,7 @@ const styleRules = [
|
|
|
116
116
|
"no-template-curly-in-string",
|
|
117
117
|
"no-ternary",
|
|
118
118
|
"operator-assignment",
|
|
119
|
+
"prefer-destructuring",
|
|
119
120
|
"prefer-promise-reject-errors",
|
|
120
121
|
"prefer-exponentiation-operator",
|
|
121
122
|
"prefer-numeric-literals",
|
|
@@ -354,6 +355,7 @@ const restrictionRules = [
|
|
|
354
355
|
"react/jsx-filename-extension",
|
|
355
356
|
"react/no-danger",
|
|
356
357
|
"react/no-unknown-property",
|
|
358
|
+
"@typescript-eslint/explicit-module-boundary-types",
|
|
357
359
|
"@typescript-eslint/explicit-function-return-type",
|
|
358
360
|
"@typescript-eslint/no-dynamic-delete",
|
|
359
361
|
"@typescript-eslint/no-empty-object-type",
|
|
@@ -390,6 +392,7 @@ const restrictionRules = [
|
|
|
390
392
|
];
|
|
391
393
|
const correctnessRules = [
|
|
392
394
|
"for-direction",
|
|
395
|
+
"no-unassigned-vars",
|
|
393
396
|
"no-async-promise-executor",
|
|
394
397
|
"no-caller",
|
|
395
398
|
"no-class-assign",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oxlint/migrate",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "Generates a `.oxlintrc.json` from a existing eslint flat config",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"author": "Sysix <sysix@sysix-coding.de>",
|
|
38
38
|
"license": "MIT",
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@antfu/eslint-config": "^
|
|
40
|
+
"@antfu/eslint-config": "^5.0.0",
|
|
41
41
|
"@eslint/eslintrc": "^3.3.1",
|
|
42
42
|
"@eslint/js": "^9.29.0",
|
|
43
43
|
"@logux/eslint-config": "^56.0.0",
|
|
44
|
-
"@oxc-node/core": "^0.0.
|
|
44
|
+
"@oxc-node/core": "^0.0.30",
|
|
45
45
|
"@stylistic/eslint-plugin": "^5.0.0",
|
|
46
46
|
"@stylistic/eslint-plugin-ts": "^4.4.1",
|
|
47
47
|
"@types/eslint-config-prettier": "^6.11.3",
|
|
@@ -54,18 +54,18 @@
|
|
|
54
54
|
"eslint-plugin-header": "^3.1.1",
|
|
55
55
|
"eslint-plugin-import": "^2.32.0",
|
|
56
56
|
"eslint-plugin-import-x": "^4.16.0",
|
|
57
|
-
"eslint-plugin-jsdoc": "^
|
|
57
|
+
"eslint-plugin-jsdoc": "^52.0.0",
|
|
58
58
|
"eslint-plugin-local": "^6.0.0",
|
|
59
59
|
"eslint-plugin-oxlint": "^1.3.0",
|
|
60
60
|
"eslint-plugin-react": "^7.37.5",
|
|
61
61
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
62
62
|
"eslint-plugin-react-perf": "^3.3.3",
|
|
63
63
|
"eslint-plugin-regexp": "^2.9.0",
|
|
64
|
-
"eslint-plugin-unicorn": "^
|
|
64
|
+
"eslint-plugin-unicorn": "^60.0.0",
|
|
65
65
|
"husky": "^9.1.7",
|
|
66
66
|
"jiti": "^2.4.2",
|
|
67
67
|
"lint-staged": "^16.1.2",
|
|
68
|
-
"oxlint": "^1.
|
|
68
|
+
"oxlint": "^1.10.0",
|
|
69
69
|
"prettier": "^3.6.1",
|
|
70
70
|
"typescript": "^5.8.3",
|
|
71
71
|
"typescript-eslint": "^8.35.0",
|
|
@@ -78,12 +78,12 @@
|
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
80
|
"commander": "^14.0.0",
|
|
81
|
-
"oxc-parser": "^0.
|
|
81
|
+
"oxc-parser": "^0.80.0",
|
|
82
82
|
"tinyglobby": "^0.2.14"
|
|
83
83
|
},
|
|
84
84
|
"peerDependencies": {
|
|
85
85
|
"globals": "^14.0.0 || ^15.0.0 || ^16.0.0",
|
|
86
86
|
"jiti": "*"
|
|
87
87
|
},
|
|
88
|
-
"packageManager": "pnpm@10.
|
|
88
|
+
"packageManager": "pnpm@10.14.0"
|
|
89
89
|
}
|