oxc/crates/oxc_linter
Jelle van der Waa fafe67c817
feat(linter/import): Implement max-dependencies (#3814)
Rule Detail:

[link](https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/max-dependencies.md)

---

This lacks the handling of `require()` which seems to be the case for
most existing `import` rules.

Another "issue" could be if you have:
```
import { foo } from "./foo";
import { bar } from "./foo";
```

But then again there should be another rule to filter these duplicate
imports out and combine them into one.

Co-authored-by: Don Isaac <donald.isaac@gmail.com>
2024-06-25 13:18:01 -04:00
..
examples chore: make println and eprintln opt-in (#3712) 2024-06-17 10:40:34 +00:00
fixtures feat(linter): support vitest/no-disabled-tests (#3717) 2024-06-24 15:16:32 +00:00
src feat(linter/import): Implement max-dependencies (#3814) 2024-06-25 13:18:01 -04:00
tests feat(tasks/website): code generate the linter rules 2024-05-23 15:21:37 +08:00
Cargo.toml chore: improve some format by running cargo +nightly fmt 2024-06-19 00:48:30 +08:00
CHANGELOG.md Release oxlint v0.4.4 (#3669) 2024-06-14 15:05:26 +08:00