I restarted my notebook but it’s still occurring. Just sent urgent message from IDE so hopefully it gets fixed.
I figured it out you can go to codebase indexing and see a file called .cursorignore and I put
# Add directories or file patterns to ignore during indexing (e.g. foo/ or *.csv)
# Skip all CSV files except the specific one we want
**/*.csv
!pii_data_analysis/uatSchemaFeb4_2025_bang.csv
# Skip all JSON and NDJSON files everywhere
**/*.json
**/*.json.gz
**/*.ndjson
**/*.ndjson.gz
# Skip MongoDB dump files and related files
mongoexport_uat/backup/**/*
**/*.bson
**/*.bson.gz
**/*.metadata.json
**/*.metadata.json.gz
and then re-index to keep large files out.