Last active
October 11, 2024 14:45
-
-
Save FranzDiebold/46bb360118a674881742d45f23a37c92 to your computer and use it in GitHub Desktop.
.vscode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"recommendations": [ | |
"42crunch.vscode-openapi", | |
"alexcvzz.vscode-sqlite", | |
"aykutsarac.jsoncrack-vscode", | |
"charliermarsh.ruff", | |
"eamodio.gitlens", | |
"editorconfig.editorconfig", | |
"esbenp.prettier-vscode", | |
"github.vscode-pull-request-github", | |
"hashicorp.terraform", | |
"hediet.vscode-drawio", | |
"ms-azuretools.vscode-docker", | |
"ms-python.black-formatter", | |
"ms-python.isort", | |
"ms-python.vscode-pylance", | |
"ms-toolsai.jupyter-keymap", | |
"ms-toolsai.jupyter-renderers", | |
"ms-toolsai.vscode-jupyter-cell-tags", | |
"ms-toolsai.vscode-jupyter-slideshow", | |
"ms-vscode.remote-explorer", | |
"ms-vscode-remote.remote-containers", | |
"ms-vscode-remote.remote-ssh", | |
"ms-vscode-remote.remote-ssh-edit", | |
"natizyskunk.sftp", | |
"redhat.vscode-yaml", | |
"scala-lang.scala", | |
"scalameta.metals", | |
"wayou.vscode-todo-highlight" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"telemetry.telemetryLevel": "off", | |
"editor.formatOnSave": true, | |
"[python]": { | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll": "explicit", | |
"source.organizeImports": "explicit" | |
}, | |
"editor.defaultFormatter": "charliermarsh.ruff" | |
}, | |
"notebook.formatOnSave.enabled": true, | |
"notebook.codeActionsOnSave": { | |
"notebook.source.fixAll": "explicit", | |
"notebook.source.organizeImports": "explicit" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment