-
Notifications
You must be signed in to change notification settings - Fork 842
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
--file-watch should respect VCS boring/ignore files #831
Conversation
Thanks! |
One of |
Yeah, to correctly interpret mercurials hgignore files you need pcre :-( |
Hmm, that's actually a serious problem, since it will greatly complicate On Sun, Aug 23, 2015, 6:55 PM Alexander Thiemann [email protected]
|
The simplest thing would probably be to add a flag to the |
It's a little awkward to provide different functionality by OS. And this On Sun, Aug 23, 2015, 8:01 PM Alexander Thiemann [email protected]
|
It's not ideal on Linux either (I just had to install libpcre on a system for the latest version of stack). |
I'll add a flag to the ignore package to remove pcre support for now as a quick fix, and then we can look for a long term fix. |
( A first attempt of Part 1 for #703 )
This is a very basic implementation and I've moved out most of the logic to a separate package ( http://hackage.haskell.org/package/ignore ) as I would like to reuse it for other projects. Don't know if this is the desired approach, looking for feedback :-)