Rusty Key
Rusty Key
Since it is possible to configure max output line length for `refmt`, can we consider support for configuration file similar to `.ocamlformat`? I understand that `refmt` is supposed to be...
```ml let shadow = [%cx {| box-shadow: 0 0 0 1px gray, 0 1px black; |}] ``` fails with: ``` invalid property value: 0 0 0 1px gray, 0 1px...
Hi! Sorry if what I am about to say is complete rubbish. I am new to reason and reason-react and maybe I just didn't grasp some basic concepts yet. In...
After trying to use reductive in a fresh project, I experienced this runtime error: ``` Uncaught TypeError: f.apply is not a function at app (curry.js:12) at curry_2 (curry.js:131) at Module._2...
Hi! Is there any reason to have this formatting: ``` [@bs.deriving abstract] type props = { [@bs.optional] title: string, [@bs.optional] active: bool, [@bs.optional] className: string, }; ``` over ``` type...
Hi! Today I started getting error alerts when trying to use this extension: `Unknown Git provider. Error: unknown Provider`. Yesterday extension worked fine. I didn't make any changes in my...
Original PR is here: https://github.com/reasonml-editor/vscode-reasonml/pull/264 Native LSP implementation was merged recently into [merlin repository](https://github.com/ocaml/merlin). This PR switches extension to use it instead of OLS. This goes with some features removed...
Successfully set up opam dependency caching, sharing the config in case it is useful to someone else
It might be useful to be able to parse paths into data, for example for universal routing. Currently, it's not exposed: ``` For Melange the ppx will emit: val http_method...