Skip to content

Commit 24210ee

Browse files
committed
Merge branch 'master' of https://github.com/lighting9999/Python
2 parents 0e31f35 + 6633126 commit 24210ee

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

.vscode/launch.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
// 使用 IntelliSense 了解相关属性。
3+
// 悬停以查看现有属性的描述。
4+
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Python: Current File",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"program": "${file}",
12+
"console": "integratedTerminal",
13+
"justMyCode": true,
14+
"env": {
15+
"PYTHONPATH": "${workspaceFolder}"
16+
}
17+
},
18+
{
19+
"name": "Python: Module",
20+
"type": "debugpy",
21+
"request": "launch",
22+
"module": "${fileBasenameNoExtension}",
23+
"console": "integratedTerminal"
24+
},
25+
{
26+
"name": "PowerShell: Launch Current File",
27+
"type": "PowerShell",
28+
"request": "launch",
29+
"script": "${file}",
30+
"args": []
31+
}
32+
]
33+
}

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"githubPullRequests.ignoredPullRequestBranches": [
33
"master"
4-
]
4+
],
5+
"python.analysis.typeCheckingMode": "standard"
56
}

0 commit comments

Comments
 (0)