Dan Vanderkam

Results 308 issues of Dan Vanderkam

### Bug Report Checklist - [X] I have tried restarting my IDE and the issue persists. - [X] I have pulled the latest `main` branch of the repository. - [X]...

type: bug
status: accepting prs

### Bug Report Checklist - [X] I have tried restarting my IDE and the issue persists. - [X] I have pulled the latest `main` branch of the repository. - [X]...

area: tooling
status: in discussion

### Bug Report Checklist - [X] I have tried restarting my IDE and the issue persists. - [X] I have pulled the latest `main` branch of the repository. - [X]...

type: bug
status: blocked

### Bug Report Checklist - [X] I have tried restarting my IDE and the issue persists. - [X] I have pulled the latest `main` branch of the repository. - [X]...

area: documentation
type: feature
status: accepting prs

### Bug Report Checklist - [X] I have tried restarting my IDE and the issue persists. - [X] I have pulled the latest `main` branch of the repository. - [X]...

type: feature
status: in discussion

### Bug Report Checklist - [X] I have tried restarting my IDE and the issue persists. - [X] I have pulled the latest `main` branch of the repository. - [X]...

type: feature
status: in discussion

On [line 59](https://github.com/sohamkamani/three-object-loader/blob/0508e276ed0d0c99b8d1a2517e6f013cdd3f96bc/source/index.js#L59), you call `scope.parse` with a single argument: ```js loader.load(url, function (text) { onLoad(scope.parse(text)); }, onProgress, onError); ``` but then later: ```js function (text, debug) { if (typeof(debug)...

### Describe the bug If a class's properties include initializers, then perfectionist/sort-classes must consider references between those properties when sorting them. Sorting property `a` before property `z` is incorrect if...

bug

This extends the type predicate inference from #57465 to cover "asserts identifier" predicates as well. For example: ```ts // function isNumber(x: unknown): asserts x is number function isNumber(x: unknown) {...

For Uncommitted Bug

Follow-on to #57465 The original PR restricted itself to functions with a single `return`. This PR lifts that restriction. This allows us to infer predicates for constructs like this: ```ts...

For Uncommitted Bug