From 67a9d7f9f79eb63697278b0a7f36eae5f8837cc1 Mon Sep 17 00:00:00 2001 From: Jordan Atwood Date: Thu, 27 Apr 2023 18:29:35 -0700 Subject: [PATCH] Add .editorconfig and jsonc schema for vscode settings.json --- .editorconfig | 3 +++ vscode/settings.json | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..974e18a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,3 @@ +[vscode/*] +indent_size = 2 +indent_style = space diff --git a/vscode/settings.json b/vscode/settings.json index 2599a97..de7dae6 100644 --- a/vscode/settings.json +++ b/vscode/settings.json @@ -1,5 +1,13 @@ { // custom settings + "json.schemas": [{ + "fileMatch": [ + "/vscode/settings.json", + ], + "schema": { + "allowTrailingCommas": true, + }, + }], "terminal.integrated.defaultProfile.linux": "bash", "terminal.integrated.profiles.linux": { "bash": {