Skip to content

Commit 6823592

Browse files
oxc-botBoshenSysix
authored
release: v1.15.0 (#503)
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Boshen <[email protected]> Co-authored-by: Alexander S. <[email protected]>
1 parent 9c02067 commit 6823592

File tree

5 files changed

+65
-40
lines changed

5 files changed

+65
-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.14.0",
3+
"version": "1.15.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.14.0",
72+
"oxlint": "^1.15.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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1431,6 +1431,9 @@ exports[`contains all the oxlint rules 1`] = `
14311431
"unicorn/no-array-reduce": [
14321432
0,
14331433
],
1434+
"unicorn/no-array-reverse": [
1435+
0,
1436+
],
14341437
"unicorn/no-await-expression-member": [
14351438
0,
14361439
],
@@ -1828,9 +1831,21 @@ exports[`contains all the oxlint rules 1`] = `
18281831
"vitest/valid-expect": [
18291832
0,
18301833
],
1834+
"vue/define-emits-declaration": [
1835+
0,
1836+
],
1837+
"vue/define-props-declaration": [
1838+
0,
1839+
],
1840+
"vue/no-multiple-slot-args": [
1841+
0,
1842+
],
18311843
"vue/valid-define-emits": [
18321844
0,
18331845
],
1846+
"vue/valid-define-props": [
1847+
0,
1848+
],
18341849
"yoda": [
18351850
0,
18361851
"never",

src/generated/rules-by-category.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,8 @@ const styleRules: Record<string, 'off'> = {
243243
'vitest/prefer-to-be-falsy': 'off',
244244
'vitest/prefer-to-be-object': 'off',
245245
'vitest/prefer-to-be-truthy': 'off',
246+
'vue/define-emits-declaration': 'off',
247+
'vue/define-props-declaration': 'off',
246248
'@typescript-eslint/default-param-last': 'off',
247249
'@typescript-eslint/init-declarations': 'off',
248250
'@typescript-eslint/max-params': 'off',
@@ -301,6 +303,7 @@ const suspiciousRules: Record<string, 'off'> = {
301303
'@typescript-eslint/no-extraneous-class': 'off',
302304
'@typescript-eslint/no-unnecessary-type-constraint': 'off',
303305
'unicorn/consistent-function-scoping': 'off',
306+
'unicorn/no-array-reverse': 'off',
304307
'unicorn/no-instanceof-builtins': 'off',
305308
'unicorn/no-accessor-recursion': 'off',
306309
'unicorn/prefer-add-event-listener': 'off',
@@ -371,6 +374,7 @@ const restrictionRules: Record<string, 'off'> = {
371374
'unicorn/prefer-modern-math-apis': 'off',
372375
'unicorn/prefer-node-protocol': 'off',
373376
'unicorn/prefer-number-properties': 'off',
377+
'vue/no-multiple-slot-args': 'off',
374378
'@typescript-eslint/no-restricted-imports': 'off',
375379
'@typescript-eslint/no-empty-function': 'off',
376380
'@typescript-eslint/no-unused-expressions': 'off',
@@ -543,6 +547,7 @@ const correctnessRules: Record<string, 'off'> = {
543547
'vitest/no-conditional-tests': 'off',
544548
'vitest/require-local-test-context-for-concurrent-snapshots': 'off',
545549
'vue/valid-define-emits': 'off',
550+
'vue/valid-define-props': 'off',
546551
'@typescript-eslint/no-dupe-class-members': 'off',
547552
'@typescript-eslint/no-loss-of-precision': 'off',
548553
'@typescript-eslint/no-unused-vars': 'off',

src/generated/rules-by-scope.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,7 @@ const unicornRules: Record<string, 'off'> = {
454454
'unicorn/explicit-length-check': 'off',
455455
'unicorn/filename-case': 'off',
456456
'unicorn/new-for-builtins': 'off',
457+
'unicorn/no-array-reverse': 'off',
457458
'unicorn/no-instanceof-builtins': 'off',
458459
'unicorn/no-array-method-this-argument': 'off',
459460
'unicorn/no-unnecessary-array-flat-depth': 'off',
@@ -593,7 +594,11 @@ const vitestRules: Record<string, 'off'> = {
593594
};
594595

595596
const vueRules: Record<string, 'off'> = {
597+
'vue/define-emits-declaration': 'off',
598+
'vue/define-props-declaration': 'off',
599+
'vue/no-multiple-slot-args': 'off',
596600
'vue/valid-define-emits': 'off',
601+
'vue/valid-define-props': 'off',
597602
};
598603

599604
export {

0 commit comments

Comments
 (0)