ndmitchell/hlint
"Use fewer imports" suggestion when importing multiple fields from the same record
開放
#1,133 建立於 2020年9月17日
good first issue
倉庫指標
- 星標
- (1,602 顆星)
- PR 合併指標
- (30 天內沒有已合併 PR)
描述
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?