Skip to content

Commit

Permalink
release: v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen committed Aug 26, 2024
1 parent 88f11c7 commit 0e8af42
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-oxlint",
"version": "0.8.0",
"version": "0.9.0",
"description": "Turn off all rules already supported by oxlint",
"type": "module",
"packageManager": "[email protected]",
Expand Down
5 changes: 5 additions & 0 deletions src/rules-by-category.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const pedanticRules = {
'require-await': 'off',
'symbol-description': 'off',
'import/max-dependencies': 'off',
'jest/no-conditional-in-test': 'off',
'jsdoc/require-param': 'off',
'jsdoc/require-param-description': 'off',
'jsdoc/require-param-name': 'off',
Expand Down Expand Up @@ -307,6 +308,8 @@ const correctnessRules = {
'unicorn/no-new-array': 'off',
'unicorn/no-thenable': 'off',
'unicorn/no-useless-length-check': 'off',
'vitest/no-conditional-tests': 'off',
'vitest/require-local-test-context-for-concurrent-snapshots': 'off',
};

const perfRules = {
Expand Down Expand Up @@ -353,6 +356,7 @@ const fixRules = {
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/no-import-type-side-effects': 'off',
'@typescript-eslint/no-useless-empty-export': 'off',
'@typescript-eslint/no-wrapper-object-types': 'off',
'@typescript-eslint/prefer-namespace-keyword': 'off',
'@typescript-eslint/prefer-ts-expect-error': 'off',
'unicorn/empty-brace-spaces': 'off',
Expand Down Expand Up @@ -392,6 +396,7 @@ const pendingRules = {
'jsx-a11y/scope': 'off',
'jsx-a11y/tabindex-no-positive': 'off',
'react/jsx-props-no-spread-multi': 'off',
'unicorn/consistent-function-scoping': 'off',
'unicorn/prefer-array-flat': 'off',
'unicorn/prefer-array-some': 'off',
'unicorn/prefer-date-now': 'off',
Expand Down
5 changes: 5 additions & 0 deletions src/rules-by-scope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ const jestRules = {
'jest/no-alias-methods': 'off',
'jest/no-commented-out-tests': 'off',
'jest/no-conditional-expect': 'off',
'jest/no-conditional-in-test': 'off',
'jest/no-confusing-set-timeout': 'off',
'jest/no-deprecated-functions': 'off',
'jest/no-disabled-tests': 'off',
Expand Down Expand Up @@ -322,6 +323,7 @@ const typescriptRules = {
'@typescript-eslint/no-unsafe-declaration-merging': 'off',
'@typescript-eslint/no-useless-empty-export': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-wrapper-object-types': 'off',
'@typescript-eslint/prefer-as-const': 'off',
'@typescript-eslint/prefer-enum-initializers': 'off',
'@typescript-eslint/prefer-for-of': 'off',
Expand All @@ -334,6 +336,7 @@ const typescriptRules = {

const unicornRules = {
'unicorn/catch-error-name': 'off',
'unicorn/consistent-function-scoping': 'off',
'unicorn/empty-brace-spaces': 'off',
'unicorn/error-message': 'off',
'unicorn/escape-case': 'off',
Expand Down Expand Up @@ -420,9 +423,11 @@ const unicornRules = {
};

const vitestRules = {
'vitest/no-conditional-tests': 'off',
'vitest/no-import-node-test': 'off',
'vitest/prefer-to-be-falsy': 'off',
'vitest/prefer-to-be-truthy': 'off',
'vitest/require-local-test-context-for-concurrent-snapshots': 'off',
};

export {
Expand Down

0 comments on commit 0e8af42

Please sign in to comment.