Skip to content

Commit 00045dd

Browse files
oxc-botBoshen
andauthored
release: v0.15.6 (#299)
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Boshen <[email protected]>
1 parent 6aac001 commit 00045dd

File tree

5 files changed

+49
-39
lines changed

5 files changed

+49
-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": "0.15.5",
3+
"version": "0.15.6",
44
"description": "Turn off all rules already supported by oxlint",
55
"type": "module",
66
"types": "./dist/index.d.ts",
@@ -65,7 +65,7 @@
6565
"husky": "^9.1.6",
6666
"lint-staged": "^15.2.10",
6767
"memfs": "^4.14.0",
68-
"oxlint": "^0.15.5",
68+
"oxlint": "^0.15.6",
6969
"prettier": "^3.3.3",
7070
"scule": "^1.3.0",
7171
"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
@@ -809,6 +809,9 @@ exports[`contains all the oxlint rules 1`] = `
809809
"allowSwitch": false,
810810
},
811811
],
812+
"no-lone-blocks": [
813+
0,
814+
],
812815
"no-loss-of-precision": [
813816
0,
814817
],
@@ -1425,6 +1428,9 @@ exports[`contains all the oxlint rules 1`] = `
14251428
"unicorn/prefer-set-size": [
14261429
0,
14271430
],
1431+
"unicorn/prefer-spread": [
1432+
0,
1433+
],
14281434
"unicorn/prefer-string-raw": [
14291435
0,
14301436
],

src/generated/rules-by-category.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ const styleRules = {
155155
'no-multi-assign': 'off',
156156
'no-nested-ternary': 'off',
157157
'no-labels': 'off',
158+
'no-lone-blocks': 'off',
158159
'no-duplicate-imports': 'off',
159160
'no-continue': 'off',
160161
'no-label-var': 'off',
@@ -246,6 +247,7 @@ const styleRules = {
246247
'unicorn/no-zero-fractions': 'off',
247248
'unicorn/number-literal-case': 'off',
248249
'unicorn/numeric-separators-style': 'off',
250+
'unicorn/prefer-spread': 'off',
249251
'unicorn/prefer-array-flat-map': 'off',
250252
'unicorn/prefer-dom-node-text-content': 'off',
251253
'unicorn/prefer-includes': 'off',

src/generated/rules-by-scope.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const eslintRules = {
1717
'no-multi-assign': 'off',
1818
'no-nested-ternary': 'off',
1919
'no-labels': 'off',
20+
'no-lone-blocks': 'off',
2021
'no-object-constructor': 'off',
2122
'no-duplicate-imports': 'off',
2223
'no-alert': 'off',
@@ -439,6 +440,7 @@ const unicornRules = {
439440
'unicorn/no-zero-fractions': 'off',
440441
'unicorn/number-literal-case': 'off',
441442
'unicorn/numeric-separators-style': 'off',
443+
'unicorn/prefer-spread': 'off',
442444
'unicorn/prefer-add-event-listener': 'off',
443445
'unicorn/prefer-array-flat': 'off',
444446
'unicorn/prefer-array-flat-map': 'off',

0 commit comments

Comments
 (0)