We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue: If you have a folder called "data" in your target repo code2prompt will skip it even if it contains relevant files.
To replicate: > my_repo > ├── folder_a > │ ├── foo.py > │ └── bar.rs > ├── data > │ ├── alice.py > │ ├── bob.py >
Running: code2prompt /home/user_name/code/my_repo/ --include="*.py, *.rs" --output=./output.txt --tokens
code2prompt /home/user_name/code/my_repo/ --include="*.py, *.rs" --output=./output.txt --tokens
Results in ./output.txt of: > my_repo > ├── folder_a > │ ├── foo.py > │ └── bar.rs home/user_name/code/my_repo/foo.py .... home/user_name/code/my_repo/bar.rs ....
Where alice.py + bob.py files are missing, if I change the name of the folder to data_x or something, both formerly missing files will appear...
The text was updated successfully, but these errors were encountered:
Thank you for opening this issue @steelep. Is the "data" folder/directory in your .gitignore file by any chance?
.gitignore
Sorry, something went wrong.
No branches or pull requests
Issue:
If you have a folder called "data" in your target repo code2prompt will skip it even if it contains relevant files.
Running:
code2prompt /home/user_name/code/my_repo/ --include="*.py, *.rs" --output=./output.txt --tokens
Where alice.py + bob.py files are missing, if I change the name of the folder to data_x or something, both formerly missing files will appear...
The text was updated successfully, but these errors were encountered: