diff --git a/.gitignore b/.gitignore index 68bc17f..5bb273f 100644 --- a/.gitignore +++ b/.gitignore @@ -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 \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..1fa0ff8 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,11 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Project Name", + "type": "debugpy", + "request": "launch", + "justMyCode": true, + } + ] +} \ No newline at end of file