-
Notifications
You must be signed in to change notification settings - Fork 16
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
Feature: ignore certain folders/paths/globs #72
Comments
Sounds like you have |
Indeed. We're using yarn 2, which—by default—places its cache inside the repository. It's a tradeoff between repo size and speed of
Yes, the 1,000+ HTTP requests that the plugin makes for those zipfiles take a long time. |
There is such an option now. Released as ignorePaths: [
[path: 'node_modules'],
[path: '.yarn']
], |
Great, thanks! |
I use this plugin to get eslint warnings in pull requests, but in PRs that contain a lot of changed files (1,000+) that eslint doesn't comment on (in our case: zipfiles) this violation command takes a very long time doing over 1,000 unneeded HTTP requests. This takes easily over 15 minutes if Jenkins / the network / BitBucket is already under a higher than normal load.
It would help a lot if we could tell the command that changes to zipfiles—alternatively, the
.yarn/cache
folder—won't trigger any warnings so it can skip those.The text was updated successfully, but these errors were encountered: