From aa75dccbba628edc79aa941f609c8ef9345c3ebc Mon Sep 17 00:00:00 2001 From: Nick Josipovic Date: Sat, 18 Oct 2025 11:41:08 +0200 Subject: [PATCH] don't patronize developers If developers don't want to see node_modules or the .* files, they will have this set up in their development environment already. This is a very frustrating setting, since this setting is essentially hiding itself, since it is in a folder with the pattern of .* so developers need to use a separate file explorer to actually find the cause of why their environment now behanves dfifferently. Either this, or make a *very bold* top-level caveat in the readme --- .vscode/settings.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 60b64c11..83a88ba2 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,9 +1,7 @@ { "files.exclude": { - ".*": true, - "node_modules": true, "cds-plugin.js": true, "LICENSES": true, "REUSE*": true } -} \ No newline at end of file +}