Evan Rutledge Borden

Results 22 issues of Evan Rutledge Borden

I am testing a bevy of async code that relies on a global configuration. I know global state is evil, but this is state that would not change in production,...

## Source Issue https://github.com/Porges/email-validate-hs/issues/52 ## Issue ICANN has prohibited dotless domain names: https://www.icann.org/news/announcement-2013-08-30-en While these are technically possible in the spec, they have effectively been made invalid. email-validate will accept...

ICANN has prohibited dotless domain names: https://www.icann.org/news/announcement-2013-08-30-en While these are technically possible in the spec, they have effectively been made invalid. `email-validate` will accept these domains in its current form,...

It seems the ["walking comment"](https://github.com/lspitzner/brittany/issues/167) problem still exists. It arises only within `instance` bodies with vertical alignment. Here are the examples found: ```hs instance ToJSON CompleteMathQuestion where toJSON CompleteMathQuestion {..}...

bug
layouting
hs:comments

Indent policy left is not being respected when the RHS of an operator is within parenthesis. compare ```hs foo = do this expression this . is . a . long...

bug
layouting
hs:operators

@lspitzner Getting the ball rolling on this topic. This is a naive first pass at sum type support. This currently breaks 11 tests, some from comment misplacement, others in more...

enhancement
layouting

As proposed by @lspitzner, `brittany` needs a layout stability policy (cc @tfausak). Version 1.0.0.0 will introduce a milestone where stability is expected. This means that layout changes need to be...

question
layouting
revisit before next release

It is very common to transform two `Text` values and then compare them for equality. ```hs toCaseFold x == toCaseFold y ``` This operation ends up being costly because it...

API Addition (PVP minor)

This is a stub issues for discussing issues around the new Windows IO manager. Discussion kicked off in: https://github.com/haskell/network/issues/357 So far: @Mistuke --- Just FYI, I'm finishing up the final...

Windows
IO manager

Arrays and Strings can share some common ground in implementation details. For in reality a string is just a list of characters. This means many Array methods would have common...