Isaac Elliott
Isaac Elliott
It would be nice if you could derive this generically rather than writing it out by hand.
For example, where we have `Maybe (NonEmpty Whitespace)` we can instead have `Maybe Async`
Currently if you validate python code then you just get a list of errors. It would be good to be able to translate that list into a human readable representation....
Python will try to constant-fold expressions like `100 ** 123456789`, which takes a very long time. Output a warning when this is encountered. For extra credit, write a refactor rule...
Eventually I want to be able to parse and validate imported modules. Not going to do it yet, but I'm going to do some brainstorming here. https://docs.python.org/3.5/reference/import.html#searching * We'll have...
Priority level (IMO): "nice to have". I often use `cabal run my-library-tests` to run tests because it prints incremental, coloured output while the tests are running. `cabal test my-library` only...
## Example ``` $ cat test.ipso test : Array a -> Bool test items = case array.find (\_ -> false) of None () -> false Some _ -> true $...
Not blocking, because I can use ``` case x of "" -> y _ -> z ```
I wanted to run benchmarks, but I discovered that the website's instructions were out of date. Companion pull request in `blaze-markup`:
I'd like to run a non-terminating `--test-ghci` command (a [warp](https://hackage.haskell.org/package/warp) web server). Currently this doesn't work as expected, because `ghciwatch` waits for the test action to finish before continuing to...