Skip to content

Commit 0684c08

Browse files
committed
Update deprecated VSCode configuration
1 parent ffa1a27 commit 0684c08

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

.vscode/launch.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,40 +6,40 @@
66
"configurations": [
77
{
88
"name": "Python: Current File",
9-
"type": "python",
9+
"type": "debugpy",
1010
"request": "launch",
1111
"program": "${file}",
12-
"console": "internalConsole",
12+
"console": "integratedTerminal",
1313
},
1414
{
1515
// Run the Python samples.
1616
// tcod will be built and installed in editalbe mode.
1717
"name": "Python: Python samples",
18-
"type": "python",
18+
"type": "debugpy",
1919
"request": "launch",
2020
"program": "${workspaceFolder}/examples/samples_tcod.py",
2121
"cwd": "${workspaceFolder}/examples",
22-
"console": "internalConsole",
22+
"console": "integratedTerminal",
2323
},
2424
{
2525
"name": "Python: Run tests",
26-
"type": "python",
26+
"type": "debugpy",
2727
"request": "launch",
2828
"module": "pytest",
2929
"preLaunchTask": "develop python-tcod",
3030
},
3131
{
3232
"name": "Documentation: Launch Chrome",
3333
"request": "launch",
34-
"type": "pwa-chrome",
34+
"type": "chrome",
3535
"url": "file://${workspaceFolder}/docs/_build/html/index.html",
3636
"webRoot": "${workspaceFolder}",
3737
"preLaunchTask": "build documentation",
3838
},
3939
{
4040
"name": "Documentation: Launch Edge",
4141
"request": "launch",
42-
"type": "pwa-msedge",
42+
"type": "msedge",
4343
"url": "file://${workspaceFolder}/docs/_build/html/index.html",
4444
"webRoot": "${workspaceFolder}",
4545
"preLaunchTask": "build documentation",

.vscode/settings.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,10 @@
88
"source.fixAll": "always",
99
"source.organizeImports": "never"
1010
},
11+
"cmake.configureOnOpen": false,
1112
"files.trimFinalNewlines": true,
1213
"files.insertFinalNewline": true,
1314
"files.trimTrailingWhitespace": true,
14-
"python.linting.enabled": true,
15-
"python.linting.flake8Enabled": false,
16-
"python.linting.mypyEnabled": true,
17-
"python.linting.mypyArgs": [
18-
"--follow-imports=silent",
19-
"--show-column-numbers"
20-
],
2115
"files.associations": {
2216
"*.spec": "python",
2317
},

0 commit comments

Comments
 (0)