tx46
tx46
### I confirm that... - [X] I have searched the [issue tracker](https://github.com/doomemacs/doomemacs/issues), [documentation](https://docs.doomemacs.org), [FAQ](https://docs.doomemacs.org/-/faq), [Discourse](https://discourse.doomemacs.org), and [Google](https://google.com), in case this issue has already been reported/resolved. - [X] I have read...
see config.py in botasaurus_driver: ``` if self.headless: args.append("--headless=new") else: if is_vmish or self.enable_xvfb_virtual_display: # Modified condition from pyvirtualdisplay import Display try: self._display = Display(visible=False, size=(1920, 1080)) self._display.start() except FileNotFoundError: print(...
I don't have a minimal repro as I only have a huge couple of files from production code rescript.json has .res.js as suffix if i put @genType on a function,...
I have a (where pr=project root, confirmed via `projectile-project-root`) pr/lib (build garbage) and pr/src/lib dir. I have tried pr/.projectile file: ``` lib/ # ignores everything both pr/lib and pr/src/lib lib...
relevant: https://github.com/vitejs/vite/issues/19741 recreate by: 1. creating a monorepo with two rescript projects x and y 2. have x be vite project 3. have x depend on y 4. launch x...
now that rescript has switched to rewatch, this stopped working for me. ``` [@jihchi/vite-plugin-rescript] error: unexpected argument '-w' found tip: to pass '-w' as a value, use '-- -w' Usage:...
there's no type-safe way to serialize them because of this i think: ``` let stringifySafe = v => JSON.stringifyAnyWithReplacer(v, (k, v) => switch typeof(v) { | #bigint => let bi...
background: https://forum.rescript-lang.org/t/my-main-gripes-with-rescript-constructive-criticism/6981/5 right now, the formatter is ruthless in formatting. this is usually appreciated, but for externs, it becomes messy sometimes. imagine a file such as ```res @module("moduleX") external f1:...
1. type `exception Foo({name: string, msg: string})` and run formatter 2. notice still single line 3. add doc comment: ``` /** foo */ exception Foo({name: string, msg: string}) ``` and...
how to test: 1. type `type t = {name: string, msg: string}` and run formatter 2. notice still single line 3. type ``` type t = { name: string, msg:...