lue-bird / elm-review-import-simple / Review.ImportSimple

Allow only simple imports

rule : Review.Rule.Rule

Report imports that consist of more than only the module name and exposed matching type name ignoring .s

config =
    [ Review.ImportSimple.rule
    ]

not reported

import Audio
import Audio.Parameter exposing (AudioParameter)

reported

import Elm.Syntax.Expression as Expression
import Parser.Advanced exposing (Parser)
import ListNonEmpty exposing (ListNonEmpty(..))

why enable this rule?