[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

chore: configure vscode extensions (#8163)

authored by

Vladimir and committed by
GitHub
(Jun 15, 2025, 11:06 AM +0200) cecc4e05 0c3be6f6

+9 -10
-7
vitest.workspace.vscode.ts
··· 1 - import { defineWorkspace } from 'vitest/config' 2 - 3 - export default defineWorkspace([ 4 - './test/core', 5 - './test/cli', 6 - './test/config', 7 - ])
+6
.vscode/extensions.json
··· 1 + { 2 + "recommendations": [ 3 + "vitest.explorer", 4 + "dbaeumer.vscode-eslint" 5 + ] 6 + }
+3 -3
.vscode/settings.json
··· 22 22 // { "rule": "*semi", "severity": "off" } 23 23 // ], 24 24 25 - "vitest.workspaceConfig": "./vitest.workspace.vscode.ts", 26 - "testing.openTesting": "neverOpen", 25 + "vitest.ignoreWorkspace": true, 26 + "vitest.configSearchPatternInclude": "test/{core,cli,config}/{vitest,vite}.config.ts", 27 + "testing.automaticallyOpenTestResults": "neverOpen", 27 28 28 29 // Enable eslint for all supported languages 29 30 "eslint.validate": [ ··· 38 39 "jsonc", 39 40 "yaml" 40 41 ], 41 - "testing.automaticallyOpenTestResults": "neverOpen", 42 42 // Use the project's typescript version 43 43 "typescript.tsdk": "node_modules/typescript/lib" 44 44 }