From 74f00736ab0cffbee098413233c2773670d1c116 Mon Sep 17 00:00:00 2001 From: Brandon Schneider Date: Mon, 11 May 2026 15:53:59 -0500 Subject: [PATCH] Add workspace load-shedding ignores --- .codeiumignore | 42 ++++++++++++++++++++++++++++++++++++++++++ .vscode/settings.json | 18 ++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 .codeiumignore diff --git a/.codeiumignore b/.codeiumignore new file mode 100644 index 00000000..2c15b0bb --- /dev/null +++ b/.codeiumignore @@ -0,0 +1,42 @@ +# Research Stack is intentionally large; keep Windsurf/Codeium indexing on +# source and docs, not generated corpora, chain snapshots, build products, or +# archived dependency trees. + +.git/ +.changes/ +.cache/ +.lake/ +**/.lake/ +**/target/ +**/node_modules/ +**/__pycache__/ +**/.venv/ + +shared-data/ +data/ +artifacts/ +out/ +logs/ +scratch/ +extensions/ +ai-math-discovery-systems/ + +5-Applications/out/ +5-Applications/scripts/models/ +3-Mathematical-Models/equations_*/ +3-Mathematical-Models/equations_parquet_tagged/ +4-Infrastructure/ComfyUI/ + +*.jsonl +*.parquet +*.vcd +*.gguf +*.zip +*.tar +*.tar.gz +*.zst +*.mp4 +*.gif + +API KEYS/ +Security & Passwords/ diff --git a/.vscode/settings.json b/.vscode/settings.json index d728e186..a4dfdc1c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -9,9 +9,18 @@ "**/.ruff_cache/**": true, "**/.venv/**": true, "**/__pycache__/**": true, + "**/.lake/**": true, + "**/target/**": true, "**/node_modules/**": true, + "**/*.jsonl": true, + "**/*.parquet": true, + "**/*.vcd": true, ".changes/**": true, "4-Infrastructure/ComfyUI/**": true, + "3-Mathematical-Models/equations_*/**": true, + "3-Mathematical-Models/equations_parquet_tagged/**": true, + "5-Applications/out/**": true, + "5-Applications/scripts/models/**": true, "API KEYS/**": true, "Security & Passwords/**": true, "ai-math-discovery-systems/**": true, @@ -29,9 +38,18 @@ "**/.ruff_cache": true, "**/.venv": true, "**/__pycache__": true, + "**/.lake": true, + "**/target": true, "**/node_modules": true, + "**/*.jsonl": true, + "**/*.parquet": true, + "**/*.vcd": true, ".changes": true, "4-Infrastructure/ComfyUI": true, + "3-Mathematical-Models/equations_*": true, + "3-Mathematical-Models/equations_parquet_tagged": true, + "5-Applications/out": true, + "5-Applications/scripts/models": true, "API KEYS": true, "Security & Passwords": true, "ai-math-discovery-systems": true,