ndmitchell/hlint

"Use fewer imports" suggestion when importing multiple fields from the same record

Open

#1.133 aberto em 17 de set. de 2020

Ver no GitHub
 (5 comments) (0 reactions) (0 assignees)Haskell (208 forks)batch import
good first issue

Métricas do repositório

Stars
 (1.594 stars)
Métricas de merge de PR
 (Nenhuma PRs mesclada em 30d)

Description

For instance, for the following line of code: import Test.Hspec.Formatters (Formatter(failedFormatter), Formatter(footerFormatter))

Suggest the following as alternative: import Test.Hspec.Formatters (Formatter(failedFormatter, footerFormatter))

Does it sound like a reasonable feature to add under "Use fewer imports" suggestion?

Guia do colaborador