Skip to content

Commit c7c9498

Browse files
oxc-botBoshen
andauthored
release: v0.9.0 (#147)
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>
1 parent 88f11c7 commit c7c9498

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-oxlint",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "Turn off all rules already supported by oxlint",
55
"type": "module",
66
"packageManager": "pnpm@9.8.0",

src/rules-by-category.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const pedanticRules = {
1616
'require-await': 'off',
1717
'symbol-description': 'off',
1818
'import/max-dependencies': 'off',
19+
'jest/no-conditional-in-test': 'off',
1920
'jsdoc/require-param': 'off',
2021
'jsdoc/require-param-description': 'off',
2122
'jsdoc/require-param-name': 'off',
@@ -307,6 +308,8 @@ const correctnessRules = {
307308
'unicorn/no-new-array': 'off',
308309
'unicorn/no-thenable': 'off',
309310
'unicorn/no-useless-length-check': 'off',
311+
'vitest/no-conditional-tests': 'off',
312+
'vitest/require-local-test-context-for-concurrent-snapshots': 'off',
310313
};
311314

312315
const perfRules = {
@@ -353,6 +356,7 @@ const fixRules = {
353356
'@typescript-eslint/consistent-type-definitions': 'off',
354357
'@typescript-eslint/no-import-type-side-effects': 'off',
355358
'@typescript-eslint/no-useless-empty-export': 'off',
359+
'@typescript-eslint/no-wrapper-object-types': 'off',
356360
'@typescript-eslint/prefer-namespace-keyword': 'off',
357361
'@typescript-eslint/prefer-ts-expect-error': 'off',
358362
'unicorn/empty-brace-spaces': 'off',
@@ -392,6 +396,7 @@ const pendingRules = {
392396
'jsx-a11y/scope': 'off',
393397
'jsx-a11y/tabindex-no-positive': 'off',
394398
'react/jsx-props-no-spread-multi': 'off',
399+
'unicorn/consistent-function-scoping': 'off',
395400
'unicorn/prefer-array-flat': 'off',
396401
'unicorn/prefer-array-some': 'off',
397402
'unicorn/prefer-date-now': 'off',

src/rules-by-scope.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ const jestRules = {
130130
'jest/no-alias-methods': 'off',
131131
'jest/no-commented-out-tests': 'off',
132132
'jest/no-conditional-expect': 'off',
133+
'jest/no-conditional-in-test': 'off',
133134
'jest/no-confusing-set-timeout': 'off',
134135
'jest/no-deprecated-functions': 'off',
135136
'jest/no-disabled-tests': 'off',
@@ -322,6 +323,7 @@ const typescriptRules = {
322323
'@typescript-eslint/no-unsafe-declaration-merging': 'off',
323324
'@typescript-eslint/no-useless-empty-export': 'off',
324325
'@typescript-eslint/no-var-requires': 'off',
326+
'@typescript-eslint/no-wrapper-object-types': 'off',
325327
'@typescript-eslint/prefer-as-const': 'off',
326328
'@typescript-eslint/prefer-enum-initializers': 'off',
327329
'@typescript-eslint/prefer-for-of': 'off',
@@ -334,6 +336,7 @@ const typescriptRules = {
334336

335337
const unicornRules = {
336338
'unicorn/catch-error-name': 'off',
339+
'unicorn/consistent-function-scoping': 'off',
337340
'unicorn/empty-brace-spaces': 'off',
338341
'unicorn/error-message': 'off',
339342
'unicorn/escape-case': 'off',
@@ -420,9 +423,11 @@ const unicornRules = {
420423
};
421424

422425
const vitestRules = {
426+
'vitest/no-conditional-tests': 'off',
423427
'vitest/no-import-node-test': 'off',
424428
'vitest/prefer-to-be-falsy': 'off',
425429
'vitest/prefer-to-be-truthy': 'off',
430+
'vitest/require-local-test-context-for-concurrent-snapshots': 'off',
426431
};
427432

428433
export {

0 commit comments

Comments
 (0)