Cameron

Results 15 issues of Cameron

In the docs for oxc/only used in recursion, there's the following case: ```js function f(a: number, b: number): number { if (a == 0) { return 1 } else {...

C-bug
A-linter

If any of the lifecycle event listeners throw, this will cause `fireLifecyleEvent` to throw. This is undesirable.

currently, `only-used-in-recursion` only supports cases such as: ```ts function foo(arg0) { foo(arg0) } ``` it could be expanded to support cases such as: ```ts function Listitem({ depth }) { return...

C-bug
good first issue
A-linter

### What version of Bun is running? 1.1.26+0a37423ba ### What platform is your computer? Darwin 23.6.0 arm64 arm ### What steps can reproduce the bug? access the `parse` property of...

bug
types

Yes, it seems that `no-useless-undefined` treats a more general case which involves this one as well. @camc314 should we mark the `no-undef-init` rule in linter product plan for eslint as...