Skip to content

Commit 27b1ade

Browse files
oxc-botBoshen
andauthored
release: v0.15.9 (#314)
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Boshen <[email protected]>
1 parent 4a6fef5 commit 27b1ade

File tree

5 files changed

+51
-41
lines changed

5 files changed

+51
-41
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": "0.15.8",
3+
"version": "0.15.9",
44
"description": "Turn off all rules already supported by oxlint",
55
"type": "module",
66
"types": "./dist/index.d.ts",
@@ -66,7 +66,7 @@
6666
"husky": "^9.1.6",
6767
"lint-staged": "^15.2.10",
6868
"memfs": "^4.14.0",
69-
"oxlint": "^0.15.8",
69+
"oxlint": "^0.15.9",
7070
"prettier": "^3.3.3",
7171
"scule": "^1.3.0",
7272
"shelljs": "^0.8.5",

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
@@ -957,6 +957,9 @@ exports[`contains all the oxlint rules 1`] = `
957957
"no-unused-vars": [
958958
0,
959959
],
960+
"no-useless-call": [
961+
0,
962+
],
960963
"no-useless-catch": [
961964
0,
962965
],
@@ -1004,6 +1007,9 @@ exports[`contains all the oxlint rules 1`] = `
10041007
"prefer-object-has-own": [
10051008
0,
10061009
],
1010+
"prefer-object-spread": [
1011+
0,
1012+
],
10071013
"prefer-promise-reject-errors": [
10081014
0,
10091015
{

src/generated/rules-by-category.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,11 @@ const styleRules = {
167167
'no-template-curly-in-string': 'off',
168168
'no-ternary': 'off',
169169
'prefer-promise-reject-errors': 'off',
170-
'prefer-rest-params': 'off',
171170
'prefer-exponentiation-operator': 'off',
172171
'prefer-numeric-literals': 'off',
173172
'prefer-object-has-own': 'off',
173+
'prefer-object-spread': 'off',
174+
'prefer-rest-params': 'off',
174175
'prefer-spread': 'off',
175176
'sort-imports': 'off',
176177
'sort-keys': 'off',
@@ -469,6 +470,7 @@ const correctnessRules = {
469470
} as const;
470471

471472
const perfRules = {
473+
'no-useless-call': 'off',
472474
'no-await-in-loop': 'off',
473475
'react/no-array-index-key': 'off',
474476
'react-perf/jsx-no-jsx-as-prop': 'off',

src/generated/rules-by-scope.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ const eslintRules = {
1313
'max-lines': 'off',
1414
'max-params': 'off',
1515
'new-cap': 'off',
16+
'no-useless-call': 'off',
1617
'no-extra-label': 'off',
1718
'no-multi-assign': 'off',
1819
'no-nested-ternary': 'off',
@@ -109,10 +110,11 @@ const eslintRules = {
109110
'no-void': 'off',
110111
'no-with': 'off',
111112
'prefer-promise-reject-errors': 'off',
112-
'prefer-rest-params': 'off',
113113
'prefer-exponentiation-operator': 'off',
114114
'prefer-numeric-literals': 'off',
115115
'prefer-object-has-own': 'off',
116+
'prefer-object-spread': 'off',
117+
'prefer-rest-params': 'off',
116118
'prefer-spread': 'off',
117119
radix: 'off',
118120
'require-await': 'off',

0 commit comments

Comments
 (0)