chore(vscode): update file nesting patterns in VSCode settings

This commit is contained in:
Cell
2026-05-28 18:11:03 +08:00
parent 0fe8e100df
commit ba369aec14
2 changed files with 17 additions and 10 deletions
+13 -9
View File
@@ -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
+4 -1
View File
@@ -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,