Skip to content

Commit c548414

Browse files
cwebster-99luabud
andauthored
Updating devcontainer.json and README.md (#22984)
- Adding the Python Debugger extension to the `devcontainer.json` extensions. - Small hygiene updates and removing mention of built linting and formatting support on `README.md`. --------- Co-authored-by: Luciana Abud <[email protected]>
1 parent e45fe13 commit c548414

File tree

3 files changed

+19
-12
lines changed

3 files changed

+19
-12
lines changed

β€Ž.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"ms-python.python",
1616
"ms-python.black-formatter",
1717
"ms-python.vscode-pylance",
18-
"charliermarsh.ruff"
18+
"charliermarsh.ruff",
19+
"ms-python.debugpy"
1920
]
2021
}
2122
},

β€ŽREADME.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Python extension for Visual Studio Code
22

3-
A [Visual Studio Code](https://code.visualstudio.com/) [extension](https://marketplace.visualstudio.com/VSCode) with rich support for the [Python language](https://www.python.org/) (for all [actively supported versions](https://devguide.python.org/#status-of-python-branches) of the language: >=3.7), including features such as IntelliSense (Pylance), linting, debugging (Python Debugger), code navigation, code formatting, refactoring, variable explorer, test explorer, and more!
3+
A [Visual Studio Code](https://code.visualstudio.com/) [extension](https://marketplace.visualstudio.com/VSCode) with rich support for the [Python language](https://www.python.org/) (for all [actively supported Python versions](https://devguide.python.org/versions/#supported-versions)), providing access points for extensions to seamlessly integrate and offer support for IntelliSense (Pylance), debugging (Python Debugger), formatting, linting, code navigation, refactoring, variable explorer, test explorer, and more!
44

55
## Support for [vscode.dev](https://vscode.dev/)
66

@@ -16,6 +16,15 @@ The Python extension will automatically install the following extensions by defa
1616

1717
These extensions are optional dependencies, meaning the Python extension will remain fully functional if they fail to be installed. Any or all of these extensions can be [disabled](https://code.visualstudio.com/docs/editor/extension-marketplace#_disable-an-extension) or [uninstalled](https://code.visualstudio.com/docs/editor/extension-marketplace#_uninstall-an-extension) at the expense of some features. Extensions installed through the marketplace are subject to the [Marketplace Terms of Use](https://cdn.vsassets.io/v/M146_20190123.39/_content/Microsoft-Visual-Studio-Marketplace-Terms-of-Use.pdf).
1818

19+
## Extensibility
20+
21+
The Python extension provides pluggable access points for extensions that extend various feature areas to further improve your Python development experience. These extensions are all optional and depend on your project configuration and preferences.
22+
23+
- [Python formatters](https://code.visualstudio.com/docs/python/formatting#_choose-a-formatter)
24+
- [Python linters](https://code.visualstudio.com/docs/python/linting#_choose-a-linter)
25+
26+
If you encounter issues with any of the listed extensions, please file an issue in its corresponding repo.
27+
1928
## Quick start
2029

2130
- **Step 1.** [Install a supported version of Python on your system](https://code.visualstudio.com/docs/python/python-tutorial#_prerequisites) (note: that the system install of Python on macOS is not supported).
@@ -63,7 +72,6 @@ Open the Command Palette (Command+Shift+P on macOS and Ctrl+Shift+P on Windows/L
6372
| `Python: Select Interpreter` | Switch between Python interpreters, versions, and environments. |
6473
| `Python: Start REPL` | Start an interactive Python REPL using the selected interpreter in the VS Code terminal. |
6574
| `Python: Run Python File in Terminal` | Runs the active Python file in the VS Code terminal. You can also run a Python file by right-clicking on the file and selecting `Run Python File in Terminal`. |
66-
| `Format Document` | Formats code using the provided [formatter](https://code.visualstudio.com/docs/python/formatting) in the `settings.json` file. |
6775
| `Python: Configure Tests` | Select a test framework and configure it to display the Test Explorer. |
6876

6977
To see all available Python commands, open the Command Palette and type `Python`. For Jupyter extension commands, just type `Jupyter`.
@@ -89,13 +97,13 @@ The extension is available in multiple languages: `de`, `en`, `es`, `fa`, `fr`,
8997

9098
## Questions, issues, feature requests, and contributions
9199

92-
- If you have a question about how to accomplish something with the extension, please [ask on Stack Overflow](https://stackoverflow.com/questions/tagged/visual-studio-code+python)
93-
- If you come across a problem with the extension, please [file an issue](https://github.com/microsoft/vscode-python)
94-
- Contributions are always welcome! Please see our [contributing guide](https://github.com/Microsoft/vscode-python/blob/main/CONTRIBUTING.md) for more details
100+
- If you have a question about how to accomplish something with the extension, please [ask on our Discussions page](https://github.com/microsoft/vscode-python/discussions/categories/q-a).
101+
- If you come across a problem with the extension, please [file an issue](https://github.com/microsoft/vscode-python).
102+
- Contributions are always welcome! Please see our [contributing guide](https://github.com/Microsoft/vscode-python/blob/main/CONTRIBUTING.md) for more details.
95103
- Any and all feedback is appreciated and welcome!
96-
- If someone has already [filed an issue](https://github.com/Microsoft/vscode-python) that encompasses your feedback, please leave a πŸ‘/πŸ‘Ž reaction on the issue
97-
- Otherwise please start a [new discussion](https://github.com/microsoft/vscode-python/discussions/categories/ideas)
98-
- If you're interested in the development of the extension, you can read about our [development process](https://github.com/Microsoft/vscode-python/blob/main/CONTRIBUTING.md#development-process)
104+
- If someone has already [filed an issue](https://github.com/Microsoft/vscode-python) that encompasses your feedback, please leave a πŸ‘/πŸ‘Ž reaction on the issue.
105+
- Otherwise please start a [new discussion](https://github.com/microsoft/vscode-python/discussions/categories/ideas).
106+
- If you're interested in the development of the extension, you can read about our [development process](https://github.com/Microsoft/vscode-python/blob/main/CONTRIBUTING.md#development-process).
99107

100108
## Data and telemetry
101109

β€Žpackage.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "python",
33
"displayName": "Python",
4-
"description": "IntelliSense (Pylance), Linting, Debugging (Python Debugger), code formatting, refactoring, unit tests, and more.",
4+
"description": "Python language support with extension access points for IntelliSense (Pylance), Debugging (Python Debugger), linting, formatting, refactoring, unit tests, and more.",
55
"version": "2024.3.0-dev",
66
"featureFlags": {
77
"usingNewInterpreterStorage": true
@@ -56,8 +56,6 @@
5656
"categories": [
5757
"Programming Languages",
5858
"Debuggers",
59-
"Linters",
60-
"Formatters",
6159
"Other",
6260
"Data Science",
6361
"Machine Learning"

0 commit comments

Comments
Β (0)