DEV Community

Ramu Narasinga
Ramu Narasinga

Posted on

2 1

oxlint.json in Preact source code.

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.

Image description

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 workflow.

We recommend running oxlint before ESLint in your lint-staged or CI setup for a quicker feedback loop, considering it only takes a few seconds to run on large codebases.

Features

  • 50–100 times faster than ESLint, and scales with the number of CPU cores (benchmark).

  • Over 480 rules with a growing list from eslint, typescript, eslint-plugin-react, eslint-plugin-jest, eslint-plugin-unicorn, eslint-plugin-jsx-a11y and many more.

  • Supports

  1. .eslintignore.

  2. ESLint comment disabling.

  3. Partial ESLint v8 Configuration in json format

Read more about Oxlint.

Oxlint script in package.json

In the Preact’s package.json, you will find the below script at line 144.

 "oxlint": "oxlint -c oxlint.json src test/browser test/node test/shared debug compat hooks test-utils",
Enter fullscreen mode Exit fullscreen mode

About me:

Hey, my name is Ramu Narasinga. I study large open-source projects and create content about their codebase architecture and best practices, sharing it through articles, videos.

I am open to work on interesting projects. Send me an email at ramu.narasinga@gmail.com

My Github — https://github.com/ramu-narasinga

My website — https://ramunarasinga.com

My Youtube channel — https://www.youtube.com/@thinkthroo

Learning platform — https://thinkthroo.com

Codebase Architecture — https://app.thinkthroo.com/architecture

Best practices — https://app.thinkthroo.com/best-practices

Production-grade projects — https://app.thinkthroo.com/production-grade-projects

References:

  1. https://github.com/preactjs/preact/blob/main/oxlint.json

  2. https://github.com/preactjs/preact/blob/main/package.json#L144

  3. https://oxc.rs/docs/guide/usage/linter

  4. https://oxc.rs/

  5. https://oxc.rs/docs/guide/usage/linter/config.html

  6. https://github.com/oxc-project

Hot sauce if you're wrong - web dev trivia for staff engineers

Hot sauce if you're wrong · web dev trivia for staff engineers (Chris vs Jeremy, Leet Heat S1.E4)

  • Shipping Fast: Test your knowledge of deployment strategies and techniques
  • Authentication: Prove you know your OAuth from your JWT
  • CSS: Demonstrate your styling expertise under pressure
  • Acronyms: Decode the alphabet soup of web development
  • Accessibility: Show your commitment to building for everyone

Contestants must answer rapid-fire questions across the full stack of modern web development. Get it right, earn points. Get it wrong? The spice level goes up!

Watch Video 🌶️🔥

Top comments (0)

AWS Security LIVE!

Tune in for AWS Security LIVE!

Join AWS Security LIVE! for expert insights and actionable tips to protect your organization and keep security teams prepared.

Learn More

👋 Kindness is contagious

Engage with a wealth of insights in this thoughtful article, valued within the supportive DEV Community. Coders of every background are welcome to join in and add to our collective wisdom.

A sincere "thank you" often brightens someone’s day. Share your gratitude in the comments below!

On DEV, the act of sharing knowledge eases our journey and fortifies our community ties. Found value in this? A quick thank you to the author can make a significant impact.

Okay