Skip to content
Latchkey

ESLint vs Oxlint: Which Linter for CI?

Oxlint is a very fast Rust linter; ESLint is the extensible standard with a vast rule and plugin ecosystem.

ESLint is the established JavaScript/TypeScript linter with thousands of community rules and plugins. Oxlint (part of the Oxc project) is a Rust-based linter focused on speed, often running orders of magnitude faster on large codebases.

ESLintOxlint
ImplementationJavaScriptRust
SpeedSlower (plugin overhead)Very fast
Rule / plugin ecosystemHugeSmaller, growing
Custom pluginsMatureLimited / evolving
Typical roleFull linterFast first-pass linter

In CI

Oxlint can lint large codebases dramatically faster than ESLint, which makes it attractive as a quick CI gate or pre-commit check. ESLint wins on coverage: framework rules, accessibility, import ordering, type-aware rules, and custom plugins. A common pattern is to run Oxlint for a fast first pass and keep ESLint for the rules Oxlint does not yet cover.

Migration effort

Audit your enabled ESLint plugins and rules before relying on Oxlint alone. Many teams adopt Oxlint incrementally alongside ESLint rather than replacing it outright, especially where type-aware or custom rules matter.

The verdict

Want a very fast lint gate and your rule needs are basic or covered: Oxlint. Depend on a wide plugin/type-aware ecosystem: keep ESLint (or run both). Check rule coverage before dropping ESLint.

Related guides

References

Run this faster and cheaper on Latchkey managed runners - self-healing included. Start free → 30-day trial · No credit card