From 7aa576d072a92721f9a817114131b14a266a91c7 Mon Sep 17 00:00:00 2001 From: Neko Ayaka Date: Wed, 16 Jul 2025 16:26:49 +0800 Subject: [PATCH] chore(workspace): update gitignore & cleanup unused vscode config --- .gitignore | 89 +++++++++++++++++++++++++++++-------------- .vscode/settings.json | 5 +-- 2 files changed, 63 insertions(+), 31 deletions(-) diff --git a/.gitignore b/.gitignore index a1a2a97ac..1e86149ed 100644 --- a/.gitignore +++ b/.gitignore @@ -1,39 +1,27 @@ .Trash/ .trash/ .DS_Store -**/.obsidian/ -.postgres + +# Node.js +node_modules + +# Logs +*.log +*.logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* .idea -.nuxt .temp -.vite-inspect -*.local -*.log -components.d.ts -**/typed-router.d.ts -dist -out/ -node_modules -.eslintcache -**/.cache/** -**/.vitepress/docsMetadata.json -**/.vitepress/cache/ -**/tsconfig.tsbuildinfo - -**/.netlify/* -**/.netlify/functions-serve/* - -coverage/ **/temp/ -**/public/assets/js/* -**/public/assets/live2d/models/* -**/public/assets/vrm/models/* - -# Serving fonts locally -**/public/assets/fonts/ +# Anything .local, especially for .env.local +*.local +# Audio binaries *.pcm *.wav *.ogg @@ -47,7 +35,41 @@ cert*/ *.key *.p12 -twitter-session.json +# Test coverage +coverage/ + +# Build +out/ +# WXT specified this too +*.output + +# Vite +dist +# Nuxt +.nuxt +# vite-plugin-inspect +.vite-inspect + +# auto import & auto fs based router +components.d.ts +**/typed-router.d.ts + +# Cache +.eslintcache +**/.cache/** +**/.vitepress/cache/ +**/tsconfig.tsbuildinfo + +# Netlify +**/.netlify/* +**/.netlify/functions-serve/* + +**/public/assets/js/* +**/public/assets/live2d/models/* +**/public/assets/vrm/models/* + +# Serving fonts locally +**/public/assets/fonts/ # Make it easy for devenv users to override their local environment. # See: https://github.com/moeru-ai/airi/pull/110#discussion_r2024378953 @@ -57,8 +79,19 @@ twitter-session.json .devenv* devenv.* +# Rust target/ crates/*/target/ # turborepo .turbo + +# WXT +.wxt +stats.html +stats-*.json +web-ext.config.ts + +# Data +.postgres +twitter-session.json diff --git a/.vscode/settings.json b/.vscode/settings.json index b8d14dea7..29ddfcc39 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -58,8 +58,6 @@ "typescript.tsdk": "node_modules/typescript/lib", "typescript.preferences.includePackageJsonAutoImports": "off", "typescript.suggest.autoImports": false, - "vue.server.hybridMode": true, - "vue.server.maxFileSize": 20971520, "cSpell.words": [ "appimage", "localforage" @@ -68,5 +66,6 @@ "editor.defaultFormatter": "rust-lang.rust-analyzer", "editor.formatOnSave": true }, - "rust-analyzer.checkOnSave": true + "rust-analyzer.checkOnSave": true, + "vitest.disableWorkspaceWarning": true }