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
fix(deno-lint): Replace WalkBuilder.add_ignore with WalkBuilder.overrides (#646)
Fix the support of files.exclude from .denolint.json.
It did not work at all. Neither with a directory, nor with a patern.
Printing the errors from add_ignore revealed it:
lib/: line 1: Is a directory (os error 21)
lib/*.js: No such file or directory (os error 2)
Overrides are supposed to handle both directories and patterns.
0 commit comments