From ef7d9bf7206b3e6723a1d7a44a09b29463633d3f Mon Sep 17 00:00:00 2001 From: Dave Jansen Date: Thu, 3 Mar 2022 14:57:16 +0900 Subject: [PATCH] Enable formatting options by default for better auto-complete and intellisense support. --- .devcontainer/devcontainer.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 4f1aeb8..0daa905 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -28,7 +28,10 @@ // Set *default* container specific settings.json values on container create. "settings": { - "omnisharp.useGlobalMono": "always" + "omnisharp.useGlobalMono": "always", + "csharp.format.enable": true, + "editor.formatOnType": true, + "editor.formatOnSave": true }, // Add the IDs of extensions you want installed when the container is created.