forked from python/typeshed
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update vscode recommended settings (python#10314)
- Loading branch information
Showing
2 changed files
with
109 additions
and
67 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,41 @@ | ||
// ⚠ Disclaimer: The typeshed team doesn't commit to maintaining this file. It exists purely for your ease of use. | ||
|
||
// Keep in alphabetical order | ||
{ | ||
"recommendations": [ | ||
"bierner.github-markdown-preview", | ||
"bungcip.better-toml", | ||
"editorconfig.editorconfig", | ||
"ms-python.black-formatter", | ||
"ms-python.flake8", | ||
"ms-python.isort", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
"redhat.vscode-yaml", | ||
], | ||
"unwantedRecommendations": [ | ||
/* | ||
* Don't recommend by default for this workspace | ||
*/ | ||
"christian-kohler.npm-intellisense", | ||
/* | ||
* Must disable in this workspace | ||
* https://github.com/microsoft/vscode/issues/40239 | ||
*/ | ||
// We use black | ||
"ms-python.autopep8", | ||
// Not using pylint | ||
"ms-python.pylint", | ||
// VSCode has implemented an optimized version | ||
"coenraads.bracket-pair-colorizer", | ||
"coenraads.bracket-pair-colorizer-2", | ||
// Obsoleted by Pylance | ||
"ms-pyright.pyright", | ||
], | ||
"recommendations": [ | ||
"bierner.github-markdown-preview", | ||
"editorconfig.editorconfig", | ||
"ms-python.black-formatter", | ||
"ms-python.flake8", | ||
"ms-python.isort", | ||
"ms-python.mypy-type-checker", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
"tamasfe.even-better-toml", | ||
"redhat.vscode-yaml", | ||
], | ||
"unwantedRecommendations": [ | ||
/* | ||
* Don't recommend by default for this workspace | ||
*/ | ||
"christian-kohler.npm-intellisense", | ||
/* | ||
* Must disable in this workspace | ||
* https://github.com/microsoft/vscode/issues/40239 | ||
*/ | ||
// even-better-toml has format on save | ||
"bungcip.better-toml", | ||
// Don't use two mypy extensions simultaneously | ||
"matangover.mypy", | ||
// We use black | ||
"ms-python.autopep8", | ||
// Not using pylint | ||
"ms-python.pylint", | ||
// Not using Ruff | ||
"charliermarsh.ruff", | ||
// VSCode has implemented an optimized version | ||
"coenraads.bracket-pair-colorizer", | ||
"coenraads.bracket-pair-colorizer-2", | ||
// Obsoleted by Pylance | ||
"ms-pyright.pyright", | ||
], | ||
} |
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