Skip to content

Commit

Permalink
release: v0.15.11 (#323)
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 <Boshen@users.noreply.github.com>
  • Loading branch information
oxc-bot and Boshen authored Feb 16, 2025
1 parent 94aa02d commit ae57842
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 39 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.10",
"version": "0.15.11",
"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.10",
"oxlint": "^0.15.11",
"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.

14 changes: 14 additions & 0 deletions src/__snapshots__/configs.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ exports[`contains all the oxlint rules 1`] = `
"@typescript-eslint/explicit-function-return-type": [
0,
],
"@typescript-eslint/init-declarations": [
0,
],
"@typescript-eslint/max-params": [
0,
],
Expand Down Expand Up @@ -244,6 +247,14 @@ exports[`contains all the oxlint rules 1`] = `
"always",
{},
],
"func-style": [
0,
"expression",
{
"allowArrowFunctions": false,
"overrides": {},
},
],
"guard-for-in": [
0,
],
Expand Down Expand Up @@ -298,6 +309,9 @@ exports[`contains all the oxlint rules 1`] = `
"import/unambiguous": [
0,
],
"init-declarations": [
0,
],
"jest/consistent-test-it": [
0,
],
Expand Down
3 changes: 3 additions & 0 deletions src/generated/rules-by-category.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,10 @@ const restrictionRules = {
const styleRules = {
'default-case-last': 'off',
'default-param-last': 'off',
'func-style': 'off',
'func-names': 'off',
'guard-for-in': 'off',
'init-declarations': 'off',
'max-params': 'off',
'new-cap': 'off',
'no-extra-label': 'off',
Expand Down Expand Up @@ -271,6 +273,7 @@ const styleRules = {
'vitest/prefer-to-be-object': 'off',
'vitest/prefer-to-be-truthy': 'off',
'@typescript-eslint/default-param-last': 'off',
'@typescript-eslint/init-declarations': 'off',
'@typescript-eslint/max-params': 'off',
'@typescript-eslint/no-magic-numbers': 'off',
'vitest/consistent-test-it': 'off',
Expand Down
3 changes: 3 additions & 0 deletions src/generated/rules-by-scope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ const eslintRules = {
'default-param-last': 'off',
eqeqeq: 'off',
'for-direction': 'off',
'func-style': 'off',
'func-names': 'off',
'guard-for-in': 'off',
'init-declarations': 'off',
'max-classes-per-file': 'off',
'max-lines': 'off',
'max-params': 'off',
Expand Down Expand Up @@ -382,6 +384,7 @@ const typescriptRules = {
'@typescript-eslint/prefer-ts-expect-error': 'off',
'@typescript-eslint/triple-slash-reference': 'off',
'@typescript-eslint/default-param-last': 'off',
'@typescript-eslint/init-declarations': 'off',
'@typescript-eslint/max-params': 'off',
'@typescript-eslint/no-array-constructor': 'off',
'@typescript-eslint/no-dupe-class-members': 'off',
Expand Down

0 comments on commit ae57842

Please sign in to comment.