Skip to content

Commit b36211f

Browse files
authored
release: v1.46.0 (#627)
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Boshen <Boshen@users.noreply.github.com>
1 parent f4d7a9e commit b36211f

File tree

6 files changed

+189
-41
lines changed

6 files changed

+189
-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": "1.43.0",
3+
"version": "1.46.0",
44
"description": "Turn off all rules already supported by oxlint",
55
"keywords": [
66
"eslint",
@@ -69,7 +69,7 @@
6969
"lint-staged": "^16.0.0",
7070
"memfs": "^4.14.0",
7171
"oxfmt": "^0.30.0",
72-
"oxlint": "^1.43.0",
72+
"oxlint": "^1.46.0",
7373
"oxlint-tsgolint": "^0.10.1",
7474
"scule": "^1.3.0",
7575
"shelljs": "^0.10.0",

pnpm-lock.yaml

Lines changed: 159 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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,9 @@ exports[`contains all the oxlint rules 1`] = `
9292
"@typescript-eslint/consistent-indexed-object-style": [
9393
0,
9494
],
95+
"@typescript-eslint/consistent-type-assertions": [
96+
0,
97+
],
9598
"@typescript-eslint/consistent-type-definitions": [
9699
0,
97100
],
@@ -1238,6 +1241,12 @@ exports[`contains all the oxlint rules 1`] = `
12381241
"no-magic-numbers": [
12391242
0,
12401243
],
1244+
"no-misleading-character-class": [
1245+
0,
1246+
{
1247+
"allowEscape": false,
1248+
},
1249+
],
12411250
"no-multi-assign": [
12421251
0,
12431252
{
@@ -2117,6 +2126,9 @@ exports[`contains all the oxlint rules 1`] = `
21172126
"unicorn/prefer-type-error": [
21182127
0,
21192128
],
2129+
"unicorn/relative-url-style": [
2130+
0,
2131+
],
21202132
"unicorn/require-array-join-separator": [
21212133
0,
21222134
],
@@ -2265,6 +2277,9 @@ exports[`contains all the oxlint rules 1`] = `
22652277
"vitest/prefer-expect-resolves": [
22662278
0,
22672279
],
2280+
"vitest/prefer-expect-type-of": [
2281+
0,
2282+
],
22682283
"vitest/prefer-hooks-in-order": [
22692284
0,
22702285
],

src/build-from-oxlint-config/__snapshots__/categories.spec.ts.snap

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ exports[`handleCategoriesScope > custom plugins, default categories > customPlug
5050
"no-import-assign": "off",
5151
"no-invalid-regexp": "off",
5252
"no-irregular-whitespace": "off",
53+
"no-iterator": "off",
5354
"no-loss-of-precision": "off",
55+
"no-misleading-character-class": "off",
5456
"no-new-native-nonconstructor": "off",
5557
"no-nonoctal-decimal-escape": "off",
5658
"no-obj-calls": "off",
@@ -137,7 +139,9 @@ exports[`handleCategoriesScope > default plugins (react, unicorn, typescript), d
137139
"no-import-assign": "off",
138140
"no-invalid-regexp": "off",
139141
"no-irregular-whitespace": "off",
142+
"no-iterator": "off",
140143
"no-loss-of-precision": "off",
144+
"no-misleading-character-class": "off",
141145
"no-new-native-nonconstructor": "off",
142146
"no-nonoctal-decimal-escape": "off",
143147
"no-obj-calls": "off",

0 commit comments

Comments
 (0)