some more vscode specific settings

This commit is contained in:
Jörn-Michael Miehe 2024-04-09 14:40:09 +02:00
parent 841ad7cd0c
commit b445585074
2 changed files with 28 additions and 0 deletions

17
.gitignore vendored
View file

@ -1,3 +1,5 @@
### https://github.com/github/gitignore/blob/main/Python.gitignore ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
@ -158,3 +160,18 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
### https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
# Local History for Visual Studio Code
.history/
# Built Visual Studio Code Extensions
*.vsix

11
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Project Name",
"type": "debugpy",
"request": "launch",
"justMyCode": true,
}
]
}