diff --git a/docs/rules/no-standalone-expect.md b/docs/rules/no-standalone-expect.md index 4505c0a..b6c3d17 100644 --- a/docs/rules/no-standalone-expect.md +++ b/docs/rules/no-standalone-expect.md @@ -12,9 +12,12 @@ This rule aims to prevent the use of `expect` outside of `it` or `test` blocks. ```json { - "vitest/no-standalone-expect": { - "additionalTestBlockFunctions": ["test"] - } + "vitest/no-standalone-expect": [ + "error", + { + "additionalTestBlockFunctions": ["test"] + } + ] } ```