rescript-vscode icon indicating copy to clipboard operation
rescript-vscode copied to clipboard

Official VSCode plugin for ReScript

Results 180 rescript-vscode issues
Sort by recently updated
recently updated
newest added

Plugin version: 1.61.8 Reproduction: Write `Array.forEach`. If you hover over `forEach` and click on it with cmd it opens the end of the file.

If I have a monorepo: ``` . ├── common │ ├── src │ └── rescript.json ├── app │ ├── src │ └── rescript.json └── rescript.json ``` and, in the root...

When working with a long module name (typically when using `Something__Namespaced`), if you use a single pipe it will break line at the argument: ```res let long = SomeLongModuleName.make("Lorem Ipsum...

Before I start developing the package, I want to create a test file and sketch out a basic script for interacting with the package. Using functions, modules and types that...

This is my initial understanding on how these tests work. Let me know if I'm not using the correct terminology.

```rescript let a = lazy({}) // format to let a = lazy {} // and let lazy(b) = a // format to let lazy b = a ``` But the...

I wonder if it is possible to extend exception tracking to `raise(Exception)` and `Js.Promise.reject` called inside `Js.Promise.make` and `Js.Promise.then` and ensure they are caught with `Js.Promise.catch`. If this works then...

enhancement
reananalyze

Use case: I'm working on Storybook support and have my stories inline as `.stories.res`. The output of those files is used by Storybook and thus not by ReScript code. So...

reananalyze

I ran across a case where false positives were being generated for first class modules. In particular the false positive was only generated if a type alias was used for...

reananalyze

``` module El = { @react.component let make = (~foo=React.null) => { foo } } let a = Js.log(a) ```

reananalyze