You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support full featured glob patterns instead of trivial cases like @utils/* and src/utils/*.
Currently paths like src/foo/*/bar will not work, because code actually expects that paths will ends on /*. It's fine, because this is most used case for paths configuration, but we may have edge cases.
Also add tests with config where aliases will be something like @foo and paths will be something like src/foo/*/bar, src/bar/**/baz
The text was updated successfully, but these errors were encountered:
Support full featured glob patterns instead of trivial cases like
@utils/*
andsrc/utils/*
.Currently paths like
src/foo/*/bar
will not work, because code actually expects that paths will ends on/*
. It's fine, because this is most used case for paths configuration, but we may have edge cases.Also add tests with config where aliases will be something like
@foo
and paths will be something likesrc/foo/*/bar
,src/bar/**/baz
The text was updated successfully, but these errors were encountered: