Closed fritzgrabo closed 10 months ago
Thanks for catching that. I'll update the changelog and merge this when I have time.
Thanks also for the kind words. I'm glad it's helpful to you. See also https://github.com/alphapapa/emacs-package-dev-handbook for more resources.
This is finally merged. Thanks for your patience.
Just a trivial fix in the
filter-files-exclude-default
regular expression: I escaped the dots where needed to make sure the regex doesn't accidentally match when it shouldn't.Before:
After:
I only noticed this because I'm working on a package named
foobar-dir-locals.el
and hit this error:With the proposed fix in place, everything works as expected.
PS: Thanks so much for this script -- together with Steve Purcell's
package-lint
, it's been a great help as I start writing and publishing my first packages 🙌