From 96a5fabc72f2ef7744077f12a138eff646f01b39 Mon Sep 17 00:00:00 2001 From: kimulaco Date: Sat, 25 Jan 2025 22:12:02 +0900 Subject: [PATCH] docs: fix exclude default config --- docs/config/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config/index.md b/docs/config/index.md index 01a5efe5f5ad..6ad050ba6e86 100644 --- a/docs/config/index.md +++ b/docs/config/index.md @@ -124,7 +124,7 @@ When using coverage, Vitest automatically adds test files `include` patterns to ### exclude - **Type:** `string[]` -- **Default:** `['**/node_modules/**', '**/dist/**', '**/cypress/**', '**/.{idea,git,cache,output,temp}/**', '**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*']` +- **Default:** `['**/node_modules/**', '**/dist/**', '**/cypress/**', '**/.{idea,git,cache,output,temp}/**', '**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build,eslint,prettier}.config.*']` - **CLI:** `vitest --exclude "**/excluded-file"` A list of glob patterns that should be excluded from your test files.