-
Notifications
You must be signed in to change notification settings - Fork 35
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
Support exclude patterns #2003
Comments
same for !(pattern) globs. You can't really use library which calls itself glob but doesn't work like one, it's misleading. |
Same problem when using package lint_staged which use |
with the same problem |
Jepp. Same with generated files like |
I think you can use I found the following in the README, and also saw such an implementation in the code :)
|
Hello!
It appears that there are currently no way of excluding certain matches.
For example, a glob may want to match against
foo.dart
but rejectfoo_test.dart
The Glob syntax seems to support
*[!_test].dart
, but this does not appear to be supported by this package.The text was updated successfully, but these errors were encountered: