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
Programmers who are new to Elm often don't understand the distinction between types and module, and write imports with aliases that simply re-apply the module's name like this:
import Validate as Validate
It would be nice if elm-analyse prompted you to replace this with:
import Validate
The text was updated successfully, but these errors were encountered:
Programmers who are new to Elm often don't understand the distinction between types and module, and write
import
s with aliases that simply re-apply the module's name like this:It would be nice if elm-analyse prompted you to replace this with:
The text was updated successfully, but these errors were encountered: