Skip to content

Commit e7c291a

Browse files
authored
release: v1.28.0 (#553)
1 parent 868bc96 commit e7c291a

File tree

5 files changed

+44
-39
lines changed

5 files changed

+44
-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.26.0",
3+
"version": "1.28.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.26.0",
72+
"oxlint": "^1.28.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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1594,6 +1594,9 @@ exports[`contains all the oxlint rules 1`] = `
15941594
"unicorn/no-unreadable-iife": [
15951595
0,
15961596
],
1597+
"unicorn/no-useless-collection-argument": [
1598+
0,
1599+
],
15971600
"unicorn/no-useless-error-capture-stack-trace": [
15981601
0,
15991602
],

src/generated/rules-by-category.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ const styleRules: Record<string, 'off'> = {
222222
'unicorn/empty-brace-spaces': 'off',
223223
'unicorn/error-message': 'off',
224224
'unicorn/filename-case': 'off',
225+
'unicorn/no-useless-collection-argument': 'off',
225226
'unicorn/no-array-method-this-argument': 'off',
226227
'unicorn/no-await-expression-member': 'off',
227228
'unicorn/no-console-spaces': 'off',

src/generated/rules-by-scope.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -469,6 +469,7 @@ const unicornRules: Record<string, 'off'> = {
469469
'unicorn/new-for-builtins': 'off',
470470
'unicorn/no-unnecessary-array-splice-count': 'off',
471471
'unicorn/no-array-callback-reference': 'off',
472+
'unicorn/no-useless-collection-argument': 'off',
472473
'unicorn/no-useless-error-capture-stack-trace': 'off',
473474
'unicorn/no-array-sort': 'off',
474475
'unicorn/no-array-reverse': 'off',

0 commit comments

Comments
 (0)