@@ -621,6 +621,7 @@ export default defineConfig([
621621 'vitest/no-hooks' : 1 ,
622622 'vitest/no-identical-title' : 1 ,
623623 'vitest/no-import-node-test' : 1 ,
624+ 'vitest/no-importing-vitest-globals' : 1 ,
624625 'vitest/no-interpolation-in-snapshots' : 0 ,
625626 'vitest/no-large-snapshots' : 0 ,
626627 'vitest/no-mocks-import' : 1 ,
@@ -629,6 +630,16 @@ export default defineConfig([
629630 'vitest/no-standalone-expect' : 1 ,
630631 'vitest/no-test-prefixes' : 0 ,
631632 'vitest/no-test-return-statement' : 0 ,
633+ 'vitest/padding-around-after-all-blocks' : 0 ,
634+ 'vitest/padding-around-after-each-blocks' : 0 ,
635+ 'vitest/padding-around-all' : 0 ,
636+ 'vitest/padding-around-before-all-blocks' : 0 ,
637+ 'vitest/padding-around-before-each-blocks' : 0 ,
638+ 'vitest/padding-around-describe-blocks' : 0 ,
639+ 'vitest/padding-around-expect-groups' : 0 ,
640+ 'vitest/padding-around-test-blocks' : 0 ,
641+ 'vitest/prefer-called-once' : 1 ,
642+ 'vitest/prefer-called-times' : 0 ,
632643 'vitest/prefer-called-with' : 0 ,
633644 'vitest/prefer-comparison-matcher' : 1 ,
634645 'vitest/prefer-each' : 1 ,
@@ -637,6 +648,7 @@ export default defineConfig([
637648 'vitest/prefer-expect-resolves' : 1 ,
638649 'vitest/prefer-hooks-in-order' : 1 ,
639650 'vitest/prefer-hooks-on-top' : 1 ,
651+ 'vitest/prefer-importing-vitest-globals' : 0 ,
640652 'vitest/prefer-lowercase-title' : 0 ,
641653 'vitest/prefer-mock-promise-shorthand' : 1 ,
642654 'vitest/prefer-snapshot-hint' : 0 ,
@@ -660,6 +672,7 @@ export default defineConfig([
660672 'vitest/valid-expect-in-promise' : 1 ,
661673 'vitest/valid-expect' : [ 1 , { alwaysAwait : true } ] ,
662674 'vitest/valid-title' : 1 ,
675+ 'vitest/warn-todo' : 1 ,
663676
664677 // https://github.com/testing-library/eslint-plugin-jest-dom#supported-rules
665678 'jest-dom/prefer-checked' : 1 ,
@@ -690,6 +703,7 @@ export default defineConfig([
690703 'testing-library/no-node-access' : 0 ,
691704 'testing-library/no-promise-in-fire-event' : 0 ,
692705 'testing-library/no-render-in-lifecycle' : 0 ,
706+ 'testing-library/no-test-id-queries' : 0 ,
693707 'testing-library/no-unnecessary-act' : 1 ,
694708 'testing-library/no-wait-for-multiple-assertions' : 1 ,
695709 'testing-library/no-wait-for-side-effects' : 1 ,
0 commit comments