This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

papers / .letta / .lettaignore
787 B 47 lines
1# .lettaignore — Letta Code file index exclusions 2# 3# Files and directories matching these patterns are excluded from the @ file 4# search index and disk scan fallback. Comment out or remove a line to bring 5# it back into search results. Add new patterns to exclude more. 6# 7# Syntax: one pattern per line, supports globs (e.g. *.log, src/generated/**) 8# Lines starting with # are comments. 9# 10# --- Dependency directories --- 11node_modules 12bower_components 13vendor 14 15# --- Build outputs --- 16dist 17build 18out 19coverage 20target 21.next 22.nuxt 23 24# --- Python --- 25venv 26.venv 27__pycache__ 28.tox 29 30# --- Version control & tooling --- 31.git 32.cache 33.letta 34 35# --- Lock files --- 36package-lock.json 37yarn.lock 38pnpm-lock.yaml 39poetry.lock 40Cargo.lock 41 42# --- Logs --- 43*.log 44 45# --- OS artifacts --- 46.DS_Store 47Thumbs.db