Skip to content

Commit

Permalink
release: v0.15.5 (#294)
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 Jan 2, 2025
1 parent b4562e3 commit 2a133f2
Show file tree
Hide file tree
Showing 5 changed files with 63 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.4",
"version": "0.15.5",
"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.4",
"oxlint": "^0.15.5",
"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.

22 changes: 22 additions & 0 deletions src/__snapshots__/configs.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,28 @@ exports[`contains all the oxlint rules 1`] = `
"max-params": [
0,
],
"new-cap": [
0,
{
"capIsNew": true,
"capIsNewExceptions": [
"Array",
"Boolean",
"Date",
"Error",
"Function",
"Number",
"Object",
"RegExp",
"String",
"Symbol",
"BigInt",
],
"newIsCap": true,
"newIsCapExceptions": [],
"properties": true,
},
],
"no-alert": [
0,
],
Expand Down
1 change: 1 addition & 0 deletions src/generated/rules-by-category.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ const styleRules = {
'func-names': 'off',
'guard-for-in': 'off',
'max-params': 'off',
'new-cap': 'off',
'no-continue': 'off',
'no-duplicate-imports': 'off',
'no-extra-label': 'off',
Expand Down
1 change: 1 addition & 0 deletions src/generated/rules-by-scope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const eslintRules = {
'max-classes-per-file': 'off',
'max-lines': 'off',
'max-params': 'off',
'new-cap': 'off',
'no-alert': 'off',
'no-array-constructor': 'off',
'no-async-promise-executor': 'off',
Expand Down

0 comments on commit 2a133f2

Please sign in to comment.