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,