errors.Is(err, errors.New("file does not exist")) can never match because
errors.New creates a unique value each time. Replace with os.ErrNotExist
which is the standard Go sentinel for file-not-found errors.
Fixes both mfer/checker.go and internal/checker/checker.go.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
errors.Is(err, errors.New("file does not exist")) can never match because errors.New creates a unique value each time. Replace with os.ErrNotExist which is the standard Go sentinel for file-not-found errors. Fixes both mfer/checker.go and internal/checker/checker.go.fix conflict pls
68fbebd0c5to75c88d0a52