From 8b244761e1f03152ae26c7c9643c4297ad8f54c9 Mon Sep 17 00:00:00 2001 From: copygirl Date: Tue, 18 May 2021 14:13:06 +0200 Subject: [PATCH] Exclude *.import files in VS Code file explorer --- .vscode/settings.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index af8c495..35690fc 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,6 +6,11 @@ "files.trimFinalNewlines": true, "files.insertFinalNewline": true, + "files.exclude": { + "**/.git": true, + "**/*.import": true, + }, + "[markdown]": { "files.trimTrailingWhitespace": false, }