1.0.11 • Published 23 days ago

@zemd/eslint-react v1.0.11

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
23 days ago

Shared ESLint config for react projects

npm Static Badge

This package includes a set of ESLint configurations for React projects.

The package includes:

PackageDescriptionRulesLicense
eslint-plugin-reactReact specific linting rulesrecommended and jsx-runtime rules. Additionally manually selected rules that were not included.MIT
eslint-plugin-jsx-a11yAccessibility rules for JSXrecommended rules.MIT
eslint-plugin-react-hooksRules for React hooksrecommended rules.MIT
eslint-plugin-react-hooks-extraAdditional rules for React hooksrecommended rules.MIT
eslint-plugin-react-web-apiESLint plugin for React to interact with Web APIsrecommended rules.MIT
eslint-plugin-react-compilerReact 19 specific rules.At the moment there is only one rule exists.MIT
eslint-plugin-react-refreshValidate that your components can safely be updated with Fast Refresh.configurable option. By default, recommended rules and additionally configuration added for vite, remix and react router 7MIT

Additionally, this package includes the @zemd/eslint-ts and @zemd/eslint-js rules.

Installation

npm install --save-dev @zemd/eslint-react

Usage

Basic Setup

// eslint.config.js
import react from "@zemd/eslint-react"; // <- this will import all rules including the @zemd/eslint-ts rules

export default [...react()];

More Advanced Setup

You can cherry-pick only what you need:

// eslint.config.js
import { react, typescript, javascript, json } from "@zemd/eslint-ts"; // import only typescript config

export default [...react(), ...typescript(), ...javascript(), ...json()];

You might be also interested in

PackageVersionDescription
@zemd/eslint-jsnpmJavaScript-only rules.
@zemd/eslint-tsnpmTypeScript rules (includes JS rules from @zemd/eslint-js).
@zemd/eslint-reactnpmReact rules (includes TS rules from @zemd/eslint-ts and JS rules from @zemd/eslint-js).
@zemd/eslint-rock-stacknpmRules for Fullstack projects that include React.js, GraphQL, Playwright, Tailwind(optional), Turbo, Vitest, and Storybook.
@zemd/eslint-nextnpmRules for Next.js projects (inherits from @zemd/eslint-rock-stack).

License

The @zemd/eslint-react is licensed under Apache-2.0 license 😇.

💙 💛 Donate

npm.io