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
Currently the checker doesn't do anything incremental. So it is fine just to call check_project again and again without any fine grained specifics for only part of a project to be checked / invalidated.
One consideration is whether then watch will support glob syntax (that is coming in #155)? Maybe the watched file could be run through Pattern::matches
The text was updated successfully, but these errors were encountered:
This will be fixed in #202. Haven't that PR merged yet as I need to find the time to review it and have a deeper think about incremental checking. Will be in the next release though!
It would be great to have a
--watch
mode for theezno check
command. Effectively runningezno check
anytime a file in the project is updated.notify: https://docs.rs/notify/latest/notify looks like a good library to do this!
Currently the checker doesn't do anything incremental. So it is fine just to call
check_project
again and again without any fine grained specifics for only part of a project to be checked / invalidated.One consideration is whether then watch will support glob syntax (that is coming in #155)? Maybe the watched file could be run through Pattern::matches
The text was updated successfully, but these errors were encountered: