pulumi/.vscode/settings.json

24 lines
871 B
JSON

{
"go.buildTags": "all smoke",
"go.testTimeout": "1h",
"gopls": {
// A couple of modules get copied as part of builds and this confuse gopls as it sees the module name twice, just ignore the copy in the build folders.
"build.directoryFilters": [
"-sdk/dotnet/Pulumi.Automation.Tests/bin",
"-sdk/nodejs/bin",
"-sdk/nodejs/tests",
"-sdk/python/env"
],
// Experimental but seems to work and means we don't need a vscode instance per go.mod file.
"experimentalWorkspaceModule": true,
},
"omnisharp.defaultLaunchSolution": "sdk/dotnet/dotnet.sln",
"dotnet-test-explorer.testProjectPath": "sdk/dotnet",
"python.testing.pytestArgs": [
"sdk/python/lib/test"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
}