Skip to content

Commit 32c72ae

Browse files
authored
release: v1.21.0 (#525)
1 parent 8a8bcf7 commit 32c72ae

File tree

5 files changed

+49
-39
lines changed

5 files changed

+49
-39
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-oxlint",
3-
"version": "1.20.0",
3+
"version": "1.21.0",
44
"description": "Turn off all rules already supported by oxlint",
55
"type": "module",
66
"types": "./dist/index.d.ts",
@@ -69,7 +69,7 @@
6969
"jiti": "^2.4.2",
7070
"lint-staged": "^16.0.0",
7171
"memfs": "^4.14.0",
72-
"oxlint": "^1.20.0",
72+
"oxlint": "^1.21.0",
7373
"oxlint-tsgolint": "^0.1.5",
7474
"prettier": "^3.3.3",
7575
"scule": "^1.3.0",

pnpm-lock.yaml

Lines changed: 37 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/__snapshots__/configs.spec.ts.snap

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1908,6 +1908,9 @@ exports[`contains all the oxlint rules 1`] = `
19081908
"vue/no-export-in-script-setup": [
19091909
0,
19101910
],
1911+
"vue/no-import-compiler-macros": [
1912+
0,
1913+
],
19111914
"vue/no-multiple-slot-args": [
19121915
0,
19131916
],
@@ -1917,6 +1920,9 @@ exports[`contains all the oxlint rules 1`] = `
19171920
"vue/prefer-import-from-vue": [
19181921
0,
19191922
],
1923+
"vue/require-default-export": [
1924+
0,
1925+
],
19201926
"vue/require-typed-ref": [
19211927
0,
19221928
],

src/generated/rules-by-category.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@ const suspiciousRules: Record<string, 'off'> = {
324324
'unicorn/require-module-specifiers': 'off',
325325
'unicorn/require-post-message-target-origin': 'off',
326326
'vue/no-required-prop-with-default': 'off',
327+
'vue/require-default-export': 'off',
327328
'@typescript-eslint/no-useless-constructor': 'off',
328329
'vitest/no-commented-out-tests': 'off',
329330
};
@@ -393,6 +394,7 @@ const restrictionRules: Record<string, 'off'> = {
393394
'unicorn/prefer-node-protocol': 'off',
394395
'unicorn/prefer-number-properties': 'off',
395396
'vue/max-props': 'off',
397+
'vue/no-import-compiler-macros': 'off',
396398
'vue/no-multiple-slot-args': 'off',
397399
'@typescript-eslint/class-methods-use-this': 'off',
398400
'@typescript-eslint/no-restricted-imports': 'off',

src/generated/rules-by-scope.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -615,10 +615,12 @@ const vueRules: Record<string, 'off'> = {
615615
'vue/define-emits-declaration': 'off',
616616
'vue/define-props-declaration': 'off',
617617
'vue/max-props': 'off',
618+
'vue/no-import-compiler-macros': 'off',
618619
'vue/no-export-in-script-setup': 'off',
619620
'vue/no-multiple-slot-args': 'off',
620621
'vue/no-required-prop-with-default': 'off',
621622
'vue/prefer-import-from-vue': 'off',
623+
'vue/require-default-export': 'off',
622624
'vue/require-typed-ref': 'off',
623625
'vue/valid-define-emits': 'off',
624626
'vue/valid-define-props': 'off',

0 commit comments

Comments
 (0)