Skip to content

Commit

Permalink
Add VS Code configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
stotko committed Jan 30, 2024
1 parent fbcbc6c commit 0ad8f83
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"recommendations": [
"ms-python.python",
"ms-python.black-formatter",
"ms-python.isort",
"benjamin-simmonds.pythoncpp-debug",
"ms-vscode.cpptools-extension-pack",
]
}
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// 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": "Test Debugger (Python C++ Debugger)",
"type": "pythoncpp",
"request": "launch",
"pythonConfig": "default",
"cppConfig": "default (gdb) Attach"
}
]
}
12 changes: 12 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"python.analysis.diagnosticSeverityOverrides": {
"reportMissingModuleSource": "none",
}
}

0 comments on commit 0ad8f83

Please sign in to comment.