Christopher Dieringer

Results 128 comments of Christopher Dieringer

Currently linting my whole project in JS tools takes ~9 minutes. 🙏 Is a native or WASM/WASI plug-in mechanism is still under long term consideration?

The bees knees would be an AST bridge between (deno_lint plugin, swc-ast) => (eslint plugin, babel-ast). i'd be excited to even contribute to it. iirc there was a thread w/...

Gotcha, thanks for the ref. Genuine ask, is the `typescript-eslint` idea worth it if we can't go fast? As a deno user, I can already work up node to call...

I did end up finding tyxml from your links! Was surprised that the jsx ppx was reason only, but the html ppx worked fine :)

Ya, I was thinking the compile bin could add a —pretty flag, but by default squash/trim all whitespace between tags. Seems like a lot of overhead/complexity to do it at...

doh! i wish i would have found this earlier! also exists in neo-blessed. https://github.com/embarklabs/neo-blessed/pull/50

#721 converts: ```ts proxyRes: http.IncomingMessage, req: express.Request, ``` to ```ts proxyRes: http.IncomingMessage, req: http.IncomingMessage, ``` which I think satisfies your use case?

I think the bug report may be worded incorrectly. It is correct that `exec` doesn't meddle with PWD. However, ~~pnpm used to resolve bin executables that in 7.x it seems...

i posit that this actually correct behavior. - middlewares call `next` - handlers terminate perhaps a `terminate: true` option drops `next`, but to not call next dangerously assumes some other...