I know the Elm compiler does dead code elimination. But I still don’t like it when I’ve imported something and it isn’t being used.
import Html exposing (span)
Maybe I was using span but at some point I decided not to use it anymore. If I forget to remove the import I want Elm to tell me that I have an unused import (namely, span). Is there a way to make that happen?