Added
Adds the property ignore_pattern to the ex_rerun configuration:
config :ex_rerun,
...
ignore_pattern: ~r{\.?#(.)}which provides some finer granularity to ignore temporary or autogenerated files
that happens to have a file type that is in the file_types list. For example,
the pattern above, ~r{\.?#(.)}, ignores Emacs auto-save and interlocking files
as these files happen to have similar filenames as the files they are related to
but prepended with a # or .#. The default value for ignore_pattern is
nil, meaning no further filtering is performed.
Bumps the version Elixir version used for compiling ex_rerun to 1.9.