logoESLint React

Glossary

A collection of terms and concepts used in the ESLint React.

P

Project Rules

Custom ESLint rules defined inline in your eslint.config.ts using @eslint-react/kit.

Unlike traditional ESLint rules that live in standalone plugins, Project Rules are project-specific rules tailored to your codebase's conventions and requirements.

Project Config

The configuration file specifies the root files and the compiler options required to compile the project.

For TypeScript or JavaScript files, the Project Config are typically named tsconfig.json or jsconfig.json and are located in the root of a project.

For MDX files, the Project Config is the "mdx" property in the tsconfig.json or jsconfig.json file.

ESLint React uses the Project Config to provide information (ex: JSX Transform) about the code it is linting.

On this page