Leonhard Riedißer

Results 8 issues of Leonhard Riedißer

Since the latest beta (?) applying hlint suggestions doesn't always work. There are some cases where it does work, and others where the suggestion is inserted without overriding existing code....

```hs data FooType = Foo | Bar Int newtype Base = Base String foo :: FooType -> Base -> String foo a b = undefined where bar :: FooType ->...

![image](https://user-images.githubusercontent.com/16477399/93930991-80349f80-fd1e-11ea-8360-02f7df196029.png) I was hoping for the case split to work on the `Bool` inside the newtype resulting in ```hs foo :: Bar -> String foo (Bar True) = "" foo...

Case splitting works for `newtype`s and plain records, but using it with named fields produces the following: ![image](https://user-images.githubusercontent.com/16477399/93930628-f684d200-fd1d-11ea-996c-9e1df1f8e76b.png)

### Versions used akka version: 2.6.15 akka-stream-kafka version: 2.1.1 scala version: 2.13.6 ### Expected Behavior We're using a [`committableSource`](https://doc.akka.io/api/alpakka-kafka/2.1.1/akka/kafka/scaladsl/Consumer$.html#committableSource[K,V](settings:akka.kafka.ConsumerSettings[K,V],subscription:akka.kafka.Subscription):akka.stream.scaladsl.Source[akka.kafka.ConsumerMessage.CommittableMessage[K,V],akka.kafka.scaladsl.Consumer.Control]) to consume messages from Kafka. We're reading the messages, parse the...

First off, thanks for your work on this library and for providing such extensive docs. It was super easy for me to get started! I'm currently experimenting with a constellation...

I'm currently experimenting with servant-auth and Cookie based authentication and I would like to write a test for such an API using servant-client. I have the following API definition: ```hs...

I basically made it work with the latest lts019 resolver version from stackage, which meant adding the dependency to `singletons-base` and updating imports accordingly. I'm not sure which code formatter...