From 1b5fd9f72afcd1a860e07243771f930f5c44102d Mon Sep 17 00:00:00 2001 From: Hornwitser Date: Mon, 30 Jun 2025 19:29:36 +0200 Subject: [PATCH] Group .license files in VsCode explorer Add fileNesting rule to group the .license files with the files they belong to. --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index b5f6762..6b8847b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,7 +7,8 @@ "explorer.fileNesting.patterns": { "tsconfig.json": "tsconfig.*.json, env.d.ts", "vite.config.*": "jsconfig*, vitest.config.*, cypress.config.*, playwright.config.*", - "package.json": "package-lock.json, bun.lockb, pnpm*, .yarnrc*, yarn*, .eslint*, eslint*, .prettier*, prettier*" + "package.json": "package-lock.json, bun.lockb, pnpm*, .yarnrc*, yarn*, .eslint*, eslint*, .prettier*, prettier*", + "*": "${capture}.license", }, "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit"