Open
Description
Your environment
Which OS do you use:
NixOS
Which lsp-client do you use:
emacs
Describe your project (alternative: link to the project):
cabal.project
Steps to reproduce
With extra
in your package db:
module Test where
foo :: [a] -> Int -> a
foo l i = l |? i
Import extension plugin will suggest importing |?
from Extra
, but Extra
is deprecated (you're supposed to use Data.List.Extra
).
Expected behaviour
Don't suggest imports from deprecated modules (just filter them out).
Actual behaviour
It suggests importing |?
from Extra
.