Skip to content

Commit

Permalink
Remove remove_deprecated_vscode_settings
Browse files Browse the repository at this point in the history
Settings are replaced with recommendations for new extensions, where
appropriate.
  • Loading branch information
alexdewar committed Nov 7, 2023
1 parent d677a33 commit b0a5aea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"recommendations": [
"ms-python.black-formatter",
"ms-python.flake8",
"ms-python.mypy-type-checker",
"ms-python.python"
]
}
6 changes: 1 addition & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
{
"python.formatting.provider": "black",
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-python.black-formatter"
},
"editor.rulers": [88],

// Enable relevant linters
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,

// --no-cov needed so that breakpoints work: https://github.com/microsoft/vscode-python/issues/693
"python.testing.pytestArgs": ["--no-cov"],
"python.testing.unittestEnabled": false,
Expand Down

0 comments on commit b0a5aea

Please sign in to comment.