🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

eslint-plugin-react-hook-form

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-react-hook-form

ESLint plugin for react-hook-form

0.3.1
latest
Source
npm
Version published
Weekly downloads
6.5K
-4.64%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-react-hook-form

npm version GitHub

react-hook-form is an awesome library which provide a neat solution for building forms. However, there are many rules for the API which may be missed by the developer. This plugin aims to check those rules automatically through ESLint. Thus brings better DX for react-hook-form.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-react-hook-form:

$ npm install eslint-plugin-react-hook-form --save-dev

Usage

Add react-hook-form to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
  "plugins": ["react-hook-form"]
}

Then configure the rules you want to use under the rules section.

{
  "rules": {
    "react-hook-form/destructuring-formstate": "error"
  }
}

or start with the recommended rule set:

{
  "extends": "plugin:react-hook-form/recommended"
}

Supported Rules

RuleDescriptionRecommendedFixable
destructuring-formstateUse destructuring assignment to access the properties of formState.⛔️
no-access-controlAvoid accessing the properties of control⛔️
no-nested-object-setvalueAvoid nested object in second argument of setValue⛔️🔧
no-use-watchAvoid using watch

Key

IconDescription
⛔️Reports as error in recommended configuration
⚠️Reports as warning in recommended configuration
🔧Rule is fixable with eslint --fix

License

MIT

Keywords

react

FAQs

Package last updated on 11 May 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts