1

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/
Jake Rote
  • 2,177
  • 3
  • 16
  • 41

1 Answers1

0

I think just packages/ should do

As far as I have read this is Regexp. You could try

Src/LiveScoringDart/LiveScoring/.+?/packages/

Günter Zöchbauer
  • 623,577
  • 216
  • 2,003
  • 1,567