Skip to content

Commit

Permalink
release: v0.15.3 (#285)
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 Dec 17, 2024
1 parent 2f77f32 commit fa7731c
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 49 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.2",
"version": "0.15.3",
"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.2",
"oxlint": "^0.15.3",
"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.

9 changes: 3 additions & 6 deletions src/__snapshots__/configs.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,6 @@ 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 @@ -289,6 +286,9 @@ exports[`contains all the oxlint rules 1`] = `
"import/no-named-as-default-member": [
0,
],
"import/no-named-default": [
0,
],
"import/no-namespace": [
0,
],
Expand Down Expand Up @@ -831,9 +831,6 @@ exports[`contains all the oxlint rules 1`] = `
"no-restricted-globals": [
0,
],
"no-restricted-imports": [
0,
],
"no-return-assign": [
0,
"except-parens",
Expand Down
3 changes: 1 addition & 2 deletions src/generated/rules-by-category.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ 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 All @@ -168,6 +167,7 @@ const styleRules = {
'sort-keys': 'off',
yoda: 'off',
'import/first': 'off',
'import/no-named-default': 'off',
'import/no-namespace': 'off',
'jest/consistent-test-it': 'off',
'jest/max-expects': 'off',
Expand Down Expand Up @@ -226,7 +226,6 @@ 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
3 changes: 1 addition & 2 deletions src/generated/rules-by-scope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ 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 @@ -133,6 +132,7 @@ const importRules = {
'import/no-dynamic-require': 'off',
'import/no-named-as-default': 'off',
'import/no-named-as-default-member': 'off',
'import/no-named-default': 'off',
'import/no-namespace': 'off',
'import/no-self-import': 'off',
'import/no-webpack-loader-syntax': 'off',
Expand Down Expand Up @@ -361,7 +361,6 @@ 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 fa7731c

Please sign in to comment.