Add .vscode directory to gitignore

This commit is contained in:
Adam Yoblick 2022-08-22 13:56:08 -05:00
Родитель f506e00114
Коммит d7122514eb
2 изменённых файлов: 35 добавлений и 15 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -12,6 +12,7 @@ TestResults/
*.ipch
.hg
.vs
.vscode
Python/Product/PythonTools/Templates/Files/*/*RoleConfiguration.mht
Python/Product/PythonTools/Templates/Projects/*/*RoleConfiguration.mht
Python/Product/PythonTools/Templates/Files/*/ConfigureCloudService.ps1

49
.vscode/launch.json поставляемый
Просмотреть файл

@ -1,16 +1,35 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"cwd": "${fileDirname}"
}
]
}
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Remote Attach",
"type": "python",
"request": "attach",
"connect": { "host": "localhost", "port": 5678 },
"pathMappings": [
{ "localRoot": "${workspaceFolder}", "remoteRoot": "." }
],
"justMyCode": false
},
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"cwd": "${fileDirname}"
},
{
"name": "Python: Current File with args",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"cwd": "${fileDirname}",
"args": ["--port=61510", "--execution-mode=ptvsd.repl.ipython.IPythonBackend"]
}
]
}