oxc/crates/oxc_linter
camc314 8d781e7dff feat(linter/oxc): differentiate between array/object in no-accumulating-spread loop diagnostic (#5375)
when reporting diagnotics for code such as

```ts
let foo = {};
for (let i = 0; i < 10; i++) {
    foo = { ...foo, [i]: i };
}
```

we do not currently differentiate the diagnostic message between object/array.
this PR changes this to help the user fix ths issue
2024-08-31 20:52:05 +00:00
..
examples
fixtures
src feat(linter/oxc): differentiate between array/object in no-accumulating-spread loop diagnostic (#5375) 2024-08-31 20:52:05 +00:00
tests
Cargo.toml Release oxlint v0.9.1 (#5316) 2024-08-29 13:04:52 +08:00
CHANGELOG.md Release oxlint v0.9.1 (#5316) 2024-08-29 13:04:52 +08:00