File length excess

Hey @al-zahr!

File length of "**********" is 96102164 which exceeds the maximum supported file size of 52428800

This message is coming from Pyright (specifically, Cursor’s fork of Pyright).

You can exclude these files in your VSCode settings. For example, if you’re encountering this issue with .ipynb files:

"cursorpyright.analysis.exclude": [
    "**/*.ipynb"
]

However, it may be better to exclude only the specific large files rather than all files of that type! Excluding these files will disable Python type checking and IntelliSense for them.