Quinn Sinclair
Quinn Sinclair
Sourcemaps are currently not supported meaning that stack traces will be from transpiled JS sources. This is not ideal for debugging purposes. The parcel bundler has implemented support for source...
In order to keep the binary size to a minimum only a subset clients of the full AWS SDK v3 is bundled currently. Multiple binaries We could via feature flags...
Create an upgrade action via CLI. llrt upgrade This could query the Github repo (via the API) and pull down latest release according to the users OS.
Currently LLRT has no support for the HTTP and HTTPS modules from node.js. The only way to do http calls is to rely on the fetch call. LLRT should support...
Since all fs methods are async in LLRT implementing callbacks for fs is trivial. They could be wrapped in a "callbackify" utility that will await the future and call a...
**Issue**: The lint always triggers for some targets. **Why**: The lint assumes an `__init` function is not present for const initializers. This does not hold for all targets. Some targets...
Changes: Added documentation on how to create types via `Ty` and how to check specific trait implementations. changelog: none r? @blyxyas
Hi, many thanks for the project! I would like to be able to parse the create sequence options in any particular order instead of just what postgreslq/duckdb support. Afaik oracle...
This follows [this discussion](https://rust-lang.zulipchat.com/#narrow/stream/257328-clippy/topic/How.20could.20I.20be.20most.20useful.3F) on Zulip The aim of this issue is to track effort to reduce False Positive rate, and potentially categorize things into common patterns. Obviously there are...
### Summary When we encounter a `filter_map` on what is effectively an identity function followed by `Some`, we shouldn't recommend `map(identity)`, but we should instead recommend completely removing `filter_map`. Many...