What version of Oxlint are you using?
1.71.0
What command did you run?
No response
What does your .oxlintrc.json (or oxlint.config.ts) config file look like?
What happened?
type Foo<T> = { // no error (correct)
[K in keyof T]: unknown; // error on K (false positive)
};
What version of Oxlint are you using?
1.71.0
What command did you run?
No response
What does your
.oxlintrc.json(oroxlint.config.ts) config file look like?{ "categories": { "correctness": "off" }, "plugins": ["react"], "rules": { "id-length": ["warn", { "checkGeneric": false }] } }What happened?