rescript-vscode
rescript-vscode copied to clipboard
Lazy syntax shows error in vscode
let a = lazy({})
// format to
let a = lazy {}
// and
let lazy(b) = a
// format to
let lazy b = a
But the current syntax check in vscode considers the formatted syntax to be incorrect syntax.
And