Skip to content

Commit

Permalink
release: v0.15.0 (#280)
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 Dec 10, 2024
1 parent 09f8775 commit 7300c69
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 69 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.14.1",
"version": "0.15.0",
"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.14.1",
"oxlint": "^0.15.0",
"prettier": "^3.3.3",
"scule": "^1.3.0",
"shelljs": "^0.8.5",
Expand Down
80 changes: 13 additions & 67 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 @@ -161,6 +161,9 @@ exports[`contains all the oxlint rules 1`] = `
"@typescript-eslint/no-require-imports": [
0,
],
"@typescript-eslint/no-restricted-imports": [
0,
],
"@typescript-eslint/no-this-alias": [
0,
],
Expand Down Expand Up @@ -828,6 +831,9 @@ exports[`contains all the oxlint rules 1`] = `
"no-restricted-globals": [
0,
],
"no-restricted-imports": [
0,
],
"no-return-assign": [
0,
"except-parens",
Expand Down
2 changes: 2 additions & 0 deletions src/generated/rules-by-category.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ const styleRules = {
'no-magic-numbers': 'off',
'no-multi-str': 'off',
'no-new-func': 'off',
'no-restricted-imports': 'off',
'no-return-assign': 'off',
'no-script-url': 'off',
'no-template-curly-in-string': 'off',
Expand Down Expand Up @@ -225,6 +226,7 @@ const styleRules = {
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/no-magic-numbers': 'off',
'@typescript-eslint/no-restricted-imports': 'off',
'@typescript-eslint/prefer-for-of': 'off',
'@typescript-eslint/prefer-function-type': 'off',
'@typescript-eslint/prefer-namespace-keyword': 'off',
Expand Down
2 changes: 2 additions & 0 deletions src/generated/rules-by-scope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ const eslintRules = {
'no-redeclare': 'off',
'no-regex-spaces': 'off',
'no-restricted-globals': 'off',
'no-restricted-imports': 'off',
'no-return-assign': 'off',
'no-script-url': 'off',
'no-self-assign': 'off',
Expand Down Expand Up @@ -360,6 +361,7 @@ const typescriptRules = {
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-redeclare': 'off',
'@typescript-eslint/no-require-imports': 'off',
'@typescript-eslint/no-restricted-imports': 'off',
'@typescript-eslint/no-this-alias': 'off',
'@typescript-eslint/no-unnecessary-type-constraint': 'off',
'@typescript-eslint/no-unsafe-declaration-merging': 'off',
Expand Down

0 comments on commit 7300c69

Please sign in to comment.