From f089237fd48288d1dbb8e2f126b6786219aef0d0 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Thu, 25 May 2023 12:45:33 -0500 Subject: [PATCH] Updated VS Code (markdown) --- VS-Code.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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",