From bd3702121f7f021e6ad48743663bbd62c880d3f8 Mon Sep 17 00:00:00 2001 From: Andrew Eisenberg Date: Thu, 7 May 2020 12:43:56 -0700 Subject: [PATCH] Never run format on save This can lead to lots of non-semantic whitespace changes. --- .vscode/settings.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 25616f6ea..b4014d7a8 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -32,5 +32,7 @@ "eslint.options": { // This is necessary so that eslint can properly resolve its plugins "resolvePluginsRelativeTo": "./extensions/ql-vscode" - } + }, + // Force this to false since this will cause too many changes on each commit + "editor.formatOnSave": false }