A common idiom for importing container packages is to import the type name directly, and the module name `qualified`: ```haskell import Data.Set (Set) import qualified Data.Set as Set ``` How do I configure `hlint` to do this? The closest I can find is something like this: ```yaml - modules: - name: "Data.Set" importStyle: qualified qualifiedStyle: unrestricted as: Set asRequired: true ``` But this causes hlint to reject the `import Data.Set (Set)` import. Is there a way to whitelist that as an exception?