
Oxlint Has a Free JavaScript Linter That Is 50-100x Faster Than ESLint
Oxlint lints your entire codebase in the time ESLint takes to lint one file. Written in Rust, it is the fastest JavaScript/TypeScript linter ever built. Speed Comparison # Lint a large project (10,000 files) eslint: 45 seconds biome: 0.8 seconds oxlint: 0.4 seconds # 100x faster than ESLint Oxlint is 50-100x faster than ESLint and 2x faster than Biome for linting. Setup npm install oxlint npx oxlint@latest No config file needed. Runs with sensible defaults immediately. What It Catches Oxlint includes 400+ rules from: ESLint core rules typescript-eslint rules eslint-plugin-react eslint-plugin-react-hooks eslint-plugin-jsx-a11y eslint-plugin-import eslint-plugin-unicorn eslint-plugin-jest eslint-plugin-vitest eslint-plugin-promise eslint-plugin-n (Node.js) All built-in. Zero plugins to install. Configuration // .oxlintrc.json { "rules" : { "no-unused-vars" : "warn" , "no-console" : "off" , "eqeqeq" : "error" , "no-var" : "error" , "prefer-const" : "warn" , "react-hooks/exhaustive-deps" :
Continue reading on Dev.to JavaScript
Opens in a new tab



