-
Notifications
You must be signed in to change notification settings - Fork 433
New issue
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
.claspignore is not ignoring anything in it #968
Comments
Same here, plus #983. |
Also having this issue and it's blocking all work |
Brand new here with a big .venv/ and .git/ in my project. The It continues to recursively scan ignored folders. And spam the output with a long list of ignored files. So one might miss the short list of of included ones. Workaround:
|
I struggled with this one too and figured it out. Maybe this information will help someone else. The Lines 86 to 87 in d633ca9
If you look at the If you want to ignore directories, you should do:
If you want to ignore files, the file name is enough:
Notice that if you add a comment like I also noticed very poor performance when ignoring the I hope this helps! |
Expected Behavior
I expected my .claspignore to ignore the files in it.
Actual Behavior
Nothing in .claspignore is being ignored. It also looks like it's not ignoring whatever starts with a period.
Steps to Reproduce the Problem
/node_modules
node_modules/
node_modules/**
/node_modules/
node_modules//.*
node_modules//./**
\node_modules
node_modules
node_modules*
*\node_modules*
node_modules*.
node_modules*.**
node_modules
(I am a newbie and I could be missing something, but still.)
Specifications
node -v
): 18.16.0clasp -v
): 2.4.2The text was updated successfully, but these errors were encountered: