Thomas Gazagnaire

Results 144 issues of Thomas Gazagnaire

Generated using `opam monorepo lock`.

Few users have expressed the fact that listing all the tests is error prone (as you could easily forget to add a test if you don't have error-as-warning + an...

The current one uses a strict equality, but in some cases you really want to pattern match on the exception to decide whether the function raised something in the right...

enhancement

It could be useful to have something more powerful, with custom tags and a simple query language. Also, on simple projects nobody care about that feature so we should not...

Currently the following code: ```ocaml let f x = match x.v with | Foo asdasdassdasdasdadasasddaasdas -> foosadadadasdsa asdadadadsa dadasdsadasdasdas | Bar -> sdasdas ``` is formatted into: ```ocaml let f...

Kind/style-suggestion

I am quite fond of: ```ocaml List.map (fun x -> xxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxx ) list ``` but ocamlformat keeps breaking that nice pattern into: ```ocaml List.map (fun x ->...

Kind/style-suggestion

I'm opening this to keep track of issues related to `js_of_ocaml` support, following Daniel's initial [remarks](https://github.com/mirage/irmin/issues/117#issuecomment-74648277) - Use [emscripten](http://kripken.github.io/emscripten-site/) - Use pure OCaml implementation when available (such as [sha1](https://github.com/dbuenzli/uuidm/blob/master/src/uuidm.ml#L21-#L124))

Is there any plan to support entropy devices for windows? The current code for initialising entropy does this: ```ocaml let devices = [ "/dev/urandom"; "/dev/random" ] let fs_exists name =...

Should be easy to do, just need to move around files. Once this is done, support for dumb-HTTP should be trivial to add.

enhancement