Stylish-haskell removes existential quantifications from type declarations: ```haskell -- before data Foo = forall (a :: *) . Bar a -- OR data Foo = forall a . Bar a -- after, in both cases data Foo = Bar a ``` I used the [latest commit](https://github.com/jaspervdj/stylish-haskell/commit/4ec5c509290d8c2b94045189a122d3fca5e45a4e) from master.