Skip to content

Commit

Permalink
release: v0.15.7 (#300)
Browse files Browse the repository at this point in the history
Automated changes by
[create-pull-request](https://github.com/peter-evans/create-pull-request)
GitHub action

Co-authored-by: Boshen <[email protected]>
  • Loading branch information
oxc-bot and Boshen authored Jan 19, 2025
1 parent 00045dd commit 3096ca3
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 44 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-oxlint",
"version": "0.15.6",
"version": "0.15.7",
"description": "Turn off all rules already supported by oxlint",
"type": "module",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -65,7 +65,7 @@
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"memfs": "^4.14.0",
"oxlint": "^0.15.6",
"oxlint": "^0.15.7",
"prettier": "^3.3.3",
"scule": "^1.3.0",
"shelljs": "^0.8.5",
Expand Down
74 changes: 37 additions & 37 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions src/__snapshots__/configs.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,9 @@ exports[`contains all the oxlint rules 1`] = `
"jest/prefer-comparison-matcher": [
0,
],
"jest/prefer-each": [
0,
],
"jest/prefer-equality-matcher": [
0,
],
Expand Down Expand Up @@ -1001,6 +1004,12 @@ exports[`contains all the oxlint rules 1`] = `
"prefer-object-has-own": [
0,
],
"prefer-promise-reject-errors": [
0,
{
"allowEmptyReject": false,
},
],
"prefer-rest-params": [
0,
],
Expand Down Expand Up @@ -1522,9 +1531,6 @@ exports[`contains all the oxlint rules 1`] = `
"vitest/no-test-prefixes": [
0,
],
"vitest/prefer-each": [
0,
],
"vitest/prefer-hooks-in-order": [
0,
],
Expand Down
3 changes: 2 additions & 1 deletion src/generated/rules-by-category.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ const styleRules = {
'no-script-url': 'off',
'no-template-curly-in-string': 'off',
'no-ternary': 'off',
'prefer-promise-reject-errors': 'off',
'prefer-rest-params': 'off',
'prefer-exponentiation-operator': 'off',
'prefer-numeric-literals': 'off',
Expand Down Expand Up @@ -197,6 +198,7 @@ const styleRules = {
'jest/no-test-prefixes': 'off',
'jest/no-test-return-statement': 'off',
'jest/no-untyped-mock-factory': 'off',
'jest/prefer-each': 'off',
'jest/prefer-called-with': 'off',
'jest/prefer-comparison-matcher': 'off',
'jest/prefer-equality-matcher': 'off',
Expand Down Expand Up @@ -264,7 +266,6 @@ const styleRules = {
'unicorn/text-encoding-identifier-case': 'off',
'unicorn/throw-new-error': 'off',
'vitest/no-import-node-test': 'off',
'vitest/prefer-each': 'off',
'vitest/prefer-to-be-falsy': 'off',
'vitest/prefer-to-be-object': 'off',
'vitest/prefer-to-be-truthy': 'off',
Expand Down
3 changes: 2 additions & 1 deletion src/generated/rules-by-scope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ const eslintRules = {
'no-var': 'off',
'no-void': 'off',
'no-with': 'off',
'prefer-promise-reject-errors': 'off',
'prefer-rest-params': 'off',
'prefer-exponentiation-operator': 'off',
'prefer-numeric-literals': 'off',
Expand Down Expand Up @@ -175,6 +176,7 @@ const jestRules = {
'jest/no-test-prefixes': 'off',
'jest/no-test-return-statement': 'off',
'jest/no-untyped-mock-factory': 'off',
'jest/prefer-each': 'off',
'jest/prefer-called-with': 'off',
'jest/prefer-comparison-matcher': 'off',
'jest/prefer-equality-matcher': 'off',
Expand Down Expand Up @@ -488,7 +490,6 @@ const unicornRules = {
const vitestRules = {
'vitest/no-conditional-tests': 'off',
'vitest/no-import-node-test': 'off',
'vitest/prefer-each': 'off',
'vitest/prefer-to-be-falsy': 'off',
'vitest/prefer-to-be-object': 'off',
'vitest/prefer-to-be-truthy': 'off',
Expand Down

0 comments on commit 3096ca3

Please sign in to comment.