shlogg · Early preview
Ramu Narasinga @karthik-m22

Oxlint: 50-100 Times Faster Than ESLint For Code Linting

Oxlint is a linter 50-100 times faster than ESLint, with over 480 rules. It's designed to catch errors without config & scales with CPU cores. Used in Preact source code as "oxlint": "oxlint -c oxlint.json src test/browser...

I found a file named oxlint.json in Preact source code. I wanted to learn more about this. In this article, you will learn what this file is about.


  
  
  Oxlint is a linter

oxc-project is an organization that provides a collection of JavaScript tools written in Rust. Oxlint is a linter.
The below information is picked from oxc docs.

Oxlint is designed to catch erroneous or useless code without requiring any configurations by default.
Note: 
At the current stage, oxlint is not intended to fully replace ESLint; it serves as an enhancement when ESLint’s slowness becomes a bottleneck in your...