I am trying to ignore all the packages folders generated by dart in my solution
I am trying to use this ignore line but it is not ignoring the folders. What am i doing wrong?
Src/LiveScoringDart/LiveScoring/**/packages/
I think just packages/ should do
packages/
As far as I have read this is Regexp. You could try
Src/LiveScoringDart/LiveScoring/.+?/packages/
Copyright © 2021 Jogjafile Inc.
I think just
packages/
should doAs far as I have read this is Regexp. You could try