From 131cb1abb12808a2609056ae9098a71c2695dcac Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Mon, 7 Aug 2023 11:46:47 +0100 Subject: [PATCH] Suppress VS Code git limit warnings during package install --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 9d92d2324..5dcc74146 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,5 +6,8 @@ // transpiled JavaScript "lib": true, - } + }, + // Installing a new Node package often triggers VS Code's git limit warnings as there is typically + // an intermediate stage where many files are modified. This setting suppresses these warnings. + "git.ignoreLimitWarning": true }