Open sebsheep opened 5 years ago
Currently, the program suppose the following imports
import Html exposing (..) import Html.Attributes exposing (..)
(maybe the same with Events)
In my codes, I'm doing import Html exposing (..) a lot but almost never import Html.Attributes exposing (..).
import Html exposing (..)
import Html.Attributes exposing (..)
It would be nice if the program let the user choose what kind of import he wants. It may be limited choices like :
import Html
import Html.Attributes
import Html.Attributes as Attributes
Currently, the program suppose the following imports
(maybe the same with Events)
In my codes, I'm doing
import Html exposing (..)
a lot but almost neverimport Html.Attributes exposing (..)
.It would be nice if the program let the user choose what kind of import he wants. It may be limited choices like :
import Html exposing (..)
orimport Html
"import Html.Attributes exposing (..)
" or "import Html.Attributes
" or "import Html.Attributes as Attributes
"