Bartek Iwańczuk

Results 361 comments of Bartek Iwańczuk

There's not. If you specify your entry point to `deno info` it will print the whole dependency graph and you'll be able to see what imports this file.

I agree with @dsherret, this rule should only consider declarations, not invocations of functions.

> I recently found many unhandled `assertRejects()` calls, even in deno_std itself. People very often forget to put `await` before them. I think as a stop-gap solution, we could warn...

This is somewhat of a design limitation at this point... `deno lint` is not really aware that `Deno.exit()` has a return type of `never`. I wonder if we could handle...

> Using `never` type requires a good enough type checker > > We can use a 'known list' of expression with never type alternatively That's a good point, it's much...

`deno lint -L debug` gives some info, we can apply your suggestions for `deno lint -L info`. PRs are welcome.

@magurotuna what do you think? Maybe we should already go down the JS plugin route for this rule?

> 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? At the moment no,...