Skip to content

Commit 5d15886

Browse files
committed
fact: remove the use of jest-formating which is now inside the jets plugin
1 parent 6655ffa commit 5d15886

File tree

1 file changed

+2
-2
lines changed
  • packages/eslint-plugin/lib/configs

1 file changed

+2
-2
lines changed

packages/eslint-plugin/lib/configs/tests.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const testsConfig = defineConfig({
44
env: {
55
"jest/globals": true,
66
},
7-
plugins: ["jest", "jest-formatting", "testing-library"],
7+
plugins: ["jest", "testing-library"],
88
rules: {
99
// Setting the recommended rules manually, because we don't want warnings, only errors
1010
"jest/no-alias-methods": "error", // STYLE
@@ -26,7 +26,7 @@ export const testsConfig = defineConfig({
2626
"jest/valid-expect": "error",
2727
"jest/valid-expect-in-promise": "error",
2828
"jest/valid-title": ["error", { disallowedWords: ["should"] }], // STYLE
29-
"jest-formatting/padding-around-all": "error", // STYLE
29+
"jest/padding-around-all": "error", // STYLE
3030
"testing-library/await-async-queries": "error",
3131
"testing-library/no-manual-cleanup": "error",
3232
"testing-library/no-container": "error",

0 commit comments

Comments
 (0)