Skip to content

Commit

Permalink
Update VS Code extension settings
Browse files Browse the repository at this point in the history
Update VS Code extension settings for Python 3.12 support.
  • Loading branch information
bkircher committed Feb 3, 2024
1 parent 3217a1d commit 69e8879
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"ms-python.black-formatter",
"ms-python.pylint",
"ms-python.python"
]
}
13 changes: 7 additions & 6 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.rulers": [
130
],
},
"black-formatter.args": [
"--line-length",
"130",
"--target-version",
"py312"
],
"editor.rulers": [
130
],
"python.testing.pytestArgs": [
"tests",
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.autoTestDiscoverOnSaveEnabled": true,
"editor.formatOnSaveMode": "modifications",
"python.linting.pylintEnabled": true,
}

0 comments on commit 69e8879

Please sign in to comment.