Skip to content

Commit

Permalink
release: v0.11.1 (#239)
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 Nov 9, 2024
1 parent 0e2458a commit a61dd3b
Show file tree
Hide file tree
Showing 5 changed files with 54 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.11.0",
"version": "0.11.1",
"description": "Turn off all rules already supported by oxlint",
"type": "module",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -64,7 +64,7 @@
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"memfs": "^4.14.0",
"oxlint": "^0.11.0",
"oxlint": "^0.11.1",
"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: 9 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-unsafe-declaration-merging": [
0,
],
"@typescript-eslint/no-unsafe-function-type": [
0,
],
"@typescript-eslint/no-unused-vars": [
0,
],
Expand Down Expand Up @@ -236,6 +239,9 @@ exports[`contains all the oxlint rules 1`] = `
"import/export": [
0,
],
"import/first": [
0,
],
"import/max-dependencies": [
0,
],
Expand Down Expand Up @@ -281,6 +287,9 @@ exports[`contains all the oxlint rules 1`] = `
"import/no-webpack-loader-syntax": [
0,
],
"import/unambiguous": [
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 @@ -36,6 +36,7 @@ const pedanticRules = {
'react/no-unescaped-entities': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/no-unsafe-function-type': 'off',
'@typescript-eslint/prefer-enum-initializers': 'off',
'@typescript-eslint/prefer-ts-expect-error': 'off',
'unicorn/consistent-empty-array-spread': 'off',
Expand Down Expand Up @@ -118,6 +119,7 @@ const restrictionRules = {
'import/no-default-export': 'off',
'import/no-dynamic-require': 'off',
'import/no-webpack-loader-syntax': 'off',
'import/unambiguous': 'off',
'jsdoc/check-access': 'off',
'jsdoc/empty-tags': 'off',
'node/no-new-require': 'off',
Expand Down Expand Up @@ -171,6 +173,7 @@ const styleRules = {
'prefer-object-has-own': 'off',
'sort-imports': 'off',
'sort-keys': 'off',
'import/first': 'off',
'jest/consistent-test-it': 'off',
'jest/max-expects': 'off',
'jest/max-nested-describe': '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 @@ -153,6 +153,7 @@ const typescriptRules = {
'@typescript-eslint/no-this-alias': 'off',
'@typescript-eslint/no-unnecessary-type-constraint': 'off',
'@typescript-eslint/no-unsafe-declaration-merging': 'off',
'@typescript-eslint/no-unsafe-function-type': 'off',
'@typescript-eslint/no-useless-empty-export': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-wrapper-object-types': 'off',
Expand All @@ -169,6 +170,7 @@ const typescriptRules = {
const importRules = {
'import/default': 'off',
'import/export': 'off',
'import/first': 'off',
'import/max-dependencies': 'off',
'import/named': 'off',
'import/namespace': 'off',
Expand All @@ -184,6 +186,7 @@ const importRules = {
'import/no-self-import': 'off',
'import/no-unused-modules': 'off',
'import/no-webpack-loader-syntax': 'off',
'import/unambiguous': 'off',
} as const;

const jestRules = {
Expand Down

0 comments on commit a61dd3b

Please sign in to comment.