Skip to content

Commit

Permalink
Updated vscode settings file with new python extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Mihálik committed Nov 10, 2023
1 parent dca3b43 commit f62bd70
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.pylint",
"ms-python.autopep8"
]
}
14 changes: 7 additions & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.formatOnSave": true,
"python.formatting.provider": "autopep8",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true,
},
"editor.defaultFormatter": "ms-python.autopep8",
"editor.formatOnSave": true,
}
}

0 comments on commit f62bd70

Please sign in to comment.