Merrick Christensen
Merrick Christensen
Yes. :-) The Editor plugins run prettier, which then supports .prettierignore but by having include "outside" of prettier with no way of declarative configuration means the only way to have...
Yes. I think that is the current status.
I think the only issue is that you'd need to maintain a long list of excludes depending on your adoption level. Ideally, a prettier ignore could be a: ```!``` But...
Forcing it to go through amd QEMU emulation also works for me as a temporary work around: `--platform linux/amd64`
Wrapping `user.type` in my own `act` call removes the warnings and makes my tests deterministic. Before: ``` await user.type(textarea, '@'); ``` After: ``` await act(async () => { await user.type(textarea,...