Skip to content

Commit

Permalink
release: v0.15.9 (#314)
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 Feb 1, 2025
1 parent 4a6fef5 commit 27b1ade
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 41 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.8",
"version": "0.15.9",
"description": "Turn off all rules already supported by oxlint",
"type": "module",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -66,7 +66,7 @@
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"memfs": "^4.14.0",
"oxlint": "^0.15.8",
"oxlint": "^0.15.9",
"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.

6 changes: 6 additions & 0 deletions src/__snapshots__/configs.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -957,6 +957,9 @@ exports[`contains all the oxlint rules 1`] = `
"no-unused-vars": [
0,
],
"no-useless-call": [
0,
],
"no-useless-catch": [
0,
],
Expand Down Expand Up @@ -1004,6 +1007,9 @@ exports[`contains all the oxlint rules 1`] = `
"prefer-object-has-own": [
0,
],
"prefer-object-spread": [
0,
],
"prefer-promise-reject-errors": [
0,
{
Expand Down
4 changes: 3 additions & 1 deletion src/generated/rules-by-category.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,11 @@ const styleRules = {
'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',
'prefer-object-has-own': 'off',
'prefer-object-spread': 'off',
'prefer-rest-params': 'off',
'prefer-spread': 'off',
'sort-imports': 'off',
'sort-keys': 'off',
Expand Down Expand Up @@ -469,6 +470,7 @@ const correctnessRules = {
} as const;

const perfRules = {
'no-useless-call': 'off',
'no-await-in-loop': 'off',
'react/no-array-index-key': 'off',
'react-perf/jsx-no-jsx-as-prop': 'off',
Expand Down
4 changes: 3 additions & 1 deletion src/generated/rules-by-scope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const eslintRules = {
'max-lines': 'off',
'max-params': 'off',
'new-cap': 'off',
'no-useless-call': 'off',
'no-extra-label': 'off',
'no-multi-assign': 'off',
'no-nested-ternary': 'off',
Expand Down Expand Up @@ -109,10 +110,11 @@ const eslintRules = {
'no-void': 'off',
'no-with': 'off',
'prefer-promise-reject-errors': 'off',
'prefer-rest-params': 'off',
'prefer-exponentiation-operator': 'off',
'prefer-numeric-literals': 'off',
'prefer-object-has-own': 'off',
'prefer-object-spread': 'off',
'prefer-rest-params': 'off',
'prefer-spread': 'off',
radix: 'off',
'require-await': 'off',
Expand Down

0 comments on commit 27b1ade

Please sign in to comment.