diff --git a/VS-Code.md b/VS-Code.md index b06de34..2aa4dc0 100644 --- a/VS-Code.md +++ b/VS-Code.md @@ -18,7 +18,7 @@ pip install -U micropython-stm32-stubs==1.20.* --target ./tools/typings --no-use This can then be referenced in the settings file below. Here's a copy of my `.vscode/settings.json` files: -``` json +``` jsonc { "python.linting.enabled": true, "python.languageServer": "Pylance", @@ -63,7 +63,7 @@ VS Code [devcontainer](https://code.visualstudio.com/docs/devcontainers/containe This can be set up quickly by adding a `.devcontainer.json` file to the root folder of your project, after which VS Code will ask in a popup if you want to re-open your project in the container. Here's an example `.devcontainer.json` micropython project file you could base yours on: -``` json +``` jsonc { "name": "Micropython Project", "image": "micropython/unix:latest",