pulumi/.gitignore
Fraser Waters 6890b9acc9
Check in default vscode settings (#8319)
Currently this is just setting go.buildTags to "all" so the language
specific tests are included in build and test commands by default.

Missing this leads to the confusing (at least to new people) behavior
of clicking run test on a test method and vscode then saying there is no
test to run.
2021-11-01 15:15:21 +00:00

64 lines
1.6 KiB
Plaintext

*.swp
**/vendor/
**/node_modules/
**/bin
**/.vscode/**/*
**/.vs/
**/.ionide/
**/.idea/
**/.DS_Store
coverage.cov
*.coverprofile
**/obj/
**/.idea/
*.iml
# VSCode creates this binary when running tests in the debugger
**/debug.test
# Check in vscode settings for this workspace. This is so we can save common settings like setting go build tags to use by default.
!**/.vscode/settings.json
# Go tests run "in tree" and this folder will linger if they fail (the integration test framework cleans
# it up when they pass.)
**/command-output/
# Likewise, we don't want to keep the typechecked version of our codegen tests.
pkg/codegen/internal/test/testdata/*/typecheck/**
# We don't need to keep testing python __pycache__ either either
pkg/codegen/internal/test/testdata/*-pp/*/*.csproj
pkg/codegen/internal/test/testdata/*-pp/*/go.mod
pkg/codegen/internal/test/testdata/*-pp/*/go.sum
pkg/codegen/internal/test/testdata/*-pp/*/Program.cs
pkg/codegen/internal/test/testdata/*-pp/*/package.json
pkg/codegen/internal/test/testdata/*-pp/*/go.sum
# By default, we don't check in yarn.lock files
**/yarn.lock
# By default, we don't check in Pipfile.lock files
**/Pipfile.lock
# Turning on MyPy in VSCode creates this workspace local folder
.mypy_cache
# for goreleaser
**/*.exe
goreleaser
pulumi-resource-pulumi-nodejs
pulumi-resource-pulumi-python
pulumi-analyzer-policy
pulumi-analyzer-policy-python
pulumi-language-python-exec
pulumi-resource-pulumi-nodejs.cmd
pulumi-resource-pulumi-python.cmd
pulumi-python3-shim.cmd
pulumi-python-shim.cmd
pulumi-analyzer-policy.cmd
pulumi-analyzer-policy-python.cmd
__pycache__