ndmitchell/hlint

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

Open

#1,133 opened on 2020年9月17日

GitHub で見る
 (5 comments) (0 reactions) (0 assignees)Haskell (1,594 stars) (208 forks)batch import
good first issue

説明

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?

コントリビューターガイド