Arend van Beelen jr.
Arend van Beelen jr.
With the latest improvements in type inference, implementing this rule should have become feasible. ### Discussed in https://github.com/biomejs/biome/discussions/6601 Originally posted by **iSchoen** June 27, 2025 There's a useful [rule](https://typescript-eslint.io/rules/no-unnecessary-condition/) in...
### Description Currently, our `GlobalsResolver` relies on hardcoded, predefined types for globals such as `Array` and `Promise`. TypeScript however has much more extended definitions in their `.d.ts` files: https://github.com/microsoft/TypeScript/tree/main/src/lib Ideally,...
### Description Implement a lint rule that checks whether there's a `default` export that exports the same symbol as one of the named exports. Re-exports are considered out-of-scope. See discussion:...