From f38ae94eaf9667af54214be160fa99bc20d9a297 Mon Sep 17 00:00:00 2001 From: senkenn Date: Wed, 19 Jun 2024 00:39:56 +0900 Subject: [PATCH] chore: Update VSCode file nesting settings This commit updates the VSCode file nesting settings in the `.vscode/settings.json` file. It adds the `"explorer.fileNesting.expand": false` configuration to disable the automatic expansion of nested files in the file explorer. This change improves the organization and navigation of files in the project. Co-authored-by: dependabot[bot] --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 76da26b..0ec7d4a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -38,5 +38,6 @@ "explorer.fileNesting.enabled": true, "explorer.fileNesting.patterns": { "*": "${basename}.*.${extname}" - } + }, + "explorer.fileNesting.expand": false }