1
0
ミラー元 https://github.com/arsenetar/dupeguru.git 前回の同期 2025-09-11 17:58:17 +00:00

chore: Add vscode launch.json

このコミットが含まれているのは:
Andrew Senetar 2023-01-12 23:51:05 -06:00
コミット 549eb7f153
署名者: arsenetar
GPGキーID: C63300DCE48AB2F1
2個のファイルの変更19行の追加2行の削除

4
.gitignore vendored
ファイルの表示

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

17
.vscode/launch.json vendored ノーマルファイル
ファイルの表示

@ -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
},
]
}