Compare commits

...

2 Commits

4 changed files with 25 additions and 6 deletions

4
.gitignore vendored
View File

@ -87,8 +87,8 @@ cython_debug/
# Visual Studio Code # Visual Studio Code
.vscode/* .vscode/*
!.vscode/settings.json !.vscode/settings.json
#!.vscode/tasks.json !.vscode/tasks.json
#!.vscode/launch.json !.vscode/launch.json
!.vscode/extensions.json !.vscode/extensions.json
!.vscode/*.code-snippets !.vscode/*.code-snippets

View File

@ -5,6 +5,7 @@
"ms-python.vscode-pylance", "ms-python.vscode-pylance",
"ms-python.python" "ms-python.python"
], ],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace. // List of extensions recommended by VS Code that should not be recommended for
// users of this workspace.
"unwantedRecommendations": [] "unwantedRecommendations": []
} }

17
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,17 @@
{
// 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": "DupuGuru",
"type": "python",
"request": "launch",
"program": "run.py",
"console": "integratedTerminal",
"subProcess": true,
"justMyCode": false
},
]
}

View File

@ -4,9 +4,10 @@
"Dupras", "Dupras",
"hscommon" "hscommon"
], ],
"editor.rulers": [
88,
120
],
"python.languageServer": "Pylance", "python.languageServer": "Pylance",
"yaml.schemaStore.enable": true, "yaml.schemaStore.enable": true,
"yaml.schemas": {
"https://json.schemastore.org/github-workflow.json": ".github/workflows/*.yml"
}
} }