From ecc7b30844e64465b48e7c67c39753cdb028aadc Mon Sep 17 00:00:00 2001 From: Dietrich Epp Date: Thu, 24 Mar 2022 22:49:49 -0400 Subject: [PATCH] VS Code: refine indentation settings --- .vscode/settings.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 0460ec7..f74314d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,5 +2,12 @@ "editor.rulers": [80], "editor.detectIndentation": false, "editor.tabSize": 4, - "editor.insertSpaces": false + "editor.insertSpaces": false, + "[starlark]": { + "editor.insertSpaces": true + }, + "[json]": { + "editor.insertSpaces": true, + "editor.tabSize": 2 + } }