Skip to content

Commit 7864b21

Browse files
oxc-botBoshen
andauthored
release: v1.11.0 (#474)
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Boshen <[email protected]>
1 parent 839eb06 commit 7864b21

File tree

5 files changed

+106
-39
lines changed

5 files changed

+106
-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.10.0",
3+
"version": "1.11.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.10.0",
72+
"oxlint": "^1.11.0",
7373
"prettier": "^3.3.3",
7474
"scule": "^1.3.0",
7575
"shelljs": "^0.10.0",

pnpm-lock.yaml

Lines changed: 94 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
@@ -140,6 +140,9 @@ exports[`contains all the oxlint rules 1`] = `
140140
"@typescript-eslint/no-extraneous-class": [
141141
0,
142142
],
143+
"@typescript-eslint/no-floating-promises": [
144+
0,
145+
],
143146
"@typescript-eslint/no-import-type-side-effects": [
144147
0,
145148
],
@@ -155,6 +158,9 @@ exports[`contains all the oxlint rules 1`] = `
155158
"@typescript-eslint/no-misused-new": [
156159
0,
157160
],
161+
"@typescript-eslint/no-misused-promises": [
162+
0,
163+
],
158164
"@typescript-eslint/no-namespace": [
159165
0,
160166
],

src/generated/rules-by-category.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,8 @@ const suspiciousRules: Record<string, 'off'> = {
292292
'react/no-namespace': 'off',
293293
'react/react-in-jsx-scope': 'off',
294294
'react/style-prop-object': 'off',
295+
'@typescript-eslint/no-misused-promises': 'off',
296+
'@typescript-eslint/no-floating-promises': 'off',
295297
'@typescript-eslint/no-confusing-non-null-assertion': 'off',
296298
'@typescript-eslint/no-extraneous-class': 'off',
297299
'@typescript-eslint/no-unnecessary-type-constraint': 'off',

src/generated/rules-by-scope.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,8 @@ const typescriptRules: Record<string, 'off'> = {
389389
'@typescript-eslint/consistent-type-imports': 'off',
390390
'@typescript-eslint/explicit-module-boundary-types': 'off',
391391
'@typescript-eslint/explicit-function-return-type': 'off',
392+
'@typescript-eslint/no-misused-promises': 'off',
393+
'@typescript-eslint/no-floating-promises': 'off',
392394
'@typescript-eslint/no-inferrable-types': 'off',
393395
'@typescript-eslint/no-confusing-non-null-assertion': 'off',
394396
'@typescript-eslint/no-duplicate-enum-values': 'off',

0 commit comments

Comments
 (0)