Skip to content

Commit 3c7c242

Browse files
authored
release: v1.17.0 (#514)
1 parent b41b3be commit 3c7c242

File tree

5 files changed

+50
-40
lines changed

5 files changed

+50
-40
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.16.0",
3+
"version": "1.17.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.16.0",
72+
"oxlint": "^1.17.0",
7373
"oxlint-tsgolint": "^0.1.5",
7474
"prettier": "^3.3.3",
7575
"scule": "^1.3.0",

pnpm-lock.yaml

Lines changed: 38 additions & 38 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
@@ -1863,6 +1863,12 @@ exports[`contains all the oxlint rules 1`] = `
18631863
"vue/no-multiple-slot-args": [
18641864
0,
18651865
],
1866+
"vue/no-required-prop-with-default": [
1867+
0,
1868+
],
1869+
"vue/require-typed-ref": [
1870+
0,
1871+
],
18661872
"vue/valid-define-emits": [
18671873
0,
18681874
],

src/generated/rules-by-category.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ const styleRules: Record<string, 'off'> = {
246246
'vitest/prefer-to-be-truthy': 'off',
247247
'vue/define-emits-declaration': 'off',
248248
'vue/define-props-declaration': 'off',
249+
'vue/require-typed-ref': 'off',
249250
'@typescript-eslint/default-param-last': 'off',
250251
'@typescript-eslint/init-declarations': 'off',
251252
'@typescript-eslint/max-params': 'off',
@@ -310,6 +311,7 @@ const suspiciousRules: Record<string, 'off'> = {
310311
'unicorn/no-accessor-recursion': 'off',
311312
'unicorn/prefer-add-event-listener': 'off',
312313
'unicorn/require-post-message-target-origin': 'off',
314+
'vue/no-required-prop-with-default': 'off',
313315
'@typescript-eslint/no-useless-constructor': 'off',
314316
'vitest/no-commented-out-tests': 'off',
315317
};

src/generated/rules-by-scope.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -601,6 +601,8 @@ const vueRules: Record<string, 'off'> = {
601601
'vue/define-emits-declaration': 'off',
602602
'vue/define-props-declaration': 'off',
603603
'vue/no-multiple-slot-args': 'off',
604+
'vue/no-required-prop-with-default': 'off',
605+
'vue/require-typed-ref': 'off',
604606
'vue/valid-define-emits': 'off',
605607
'vue/valid-define-props': 'off',
606608
};

0 commit comments

Comments
 (0)