Results 122 comments of Adam Bergmark

This is a bit involved since it requires name resolution. [haskell-names](http://hackage.haskell.org/package/haskell-names) does this but requires that all libraries are installed with the option to generate the required interface files. `-ddump-minimal-imports`...

This would be nice to have! Though i'm not sure if I prefer an import on each line or like this: ``` import Foo ( foo, bar , baz, quux...

No it's not fixed. I have a fork that does utrecht formatting for language pragmas, would be nice to be able to merge this (related: #64) but it's quite some...

This commit does this for unqualified imports: https://github.com/silkapp/stylish-haskell/commit/08075cb52003db459feb1e9dccf902be80f1e073 , configuration option needed. Ideally I'd want a more granular way to define these options since with just this commit we probably...

We changed our minds and want opt-out for notifications, right? It might also be useful to say something about the revising user e.g., "JohanTibell (maintainer)", AdamBergmark (trustee)" so it's clear...

I don't really think it needs to be fixed, since you will get a timeout, and you will get an appropriate assertion error and stack trace. If you don't want...

Though on second thought, if the serial tests are synchronous it's possible to prevent this (catch errors in next(), clear timeout, rethrow). Still not sure if it's necessary though.

i use expresso -I . -r test.js with test.js contaning "global.assert = require('assert');" (and other package specific includes). The test is then just module.exports = { a : function ()...

As far as I can tell, the timeout is for running tests, not waiting for tests to be added, so that's why it freezes. It would probably be nice to...