From ba369aec14a96333ec227a23271aca2460d11ac6 Mon Sep 17 00:00:00 2001 From: Cell <1024@lruihao.cn> Date: Thu, 28 May 2026 18:11:03 +0800 Subject: [PATCH] chore(vscode): update file nesting patterns in VSCode settings --- .gitignore | 22 +++++++++++++--------- .vscode/settings.json | 5 ++++- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index b50b1983..db27d541 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,9 @@ -# Hugo default output directory -public/ -resources/ - # Hugo .hugo_build.lock jsconfig.json .hugo_cache +public/ +resources/ # NPM node_modules/ @@ -22,6 +20,17 @@ node_modules/ # Claude .claude/ +# Vercel +.vercel/ + +# Environment Variables +.env*.local + +# Documentation +docs/ +CHANGELOG.md +TODO.md + # OS Files ## Windows Thumbs.db @@ -34,8 +43,3 @@ $RECYCLE.BIN/ ## Linux .directory - -CHANGELOG.md -docs -.vercel -.env*.local diff --git a/.vscode/settings.json b/.vscode/settings.json index cf14e0bd..f1e319b7 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,7 +3,10 @@ "explorer.fileNesting.enabled": true, "explorer.fileNesting.patterns": { "tsconfig.json": "tsconfig.*.json, env.d.ts", - "package.json": "package-lock.json, pnpm*, .yarnrc*, yarn*, .eslint*, eslint*, .oxlint*, oxlint*, .prettier*, prettier*, .editorconfig" + "package.json": "package-lock.json, pnpm*, .npmrc, .nvmrc, .eslint*, eslint*, .editorconfig, librarybot.yml", + "README.md": "README.*.md, CODE_OF_CONDUCT.md, CONTRIBUTING.md, LICENSE, SECURITY.md, CHANGELOG.md", + "hugo.toml": "theme.toml, .hugo_build.lock", + "vercel.json": "build.sh" }, // Disable the default formatter, use eslint instead "prettier.enable": false,