Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 560 Bytes

eslint.md

File metadata and controls

30 lines (20 loc) · 560 Bytes
title sidebar_label description
ESLint
ESLint
CodeRabbit's guide to ESLint.

ESLint is a static code analysis tool for identifying problematic patterns found in JavaScript code.

Files

ESLint will run on files with the following extensions:

  • .js
  • .jsx
  • .ts
  • .tsx

Configuration

ESLint supports the following config files:

  • eslint.config.js
  • eslint.config.mjs
  • eslint.config.cjs
  • .eslintrc

Links