项目作者: andykao1213

项目描述 :
ESLint plugin for react-hook-form
高级语言: JavaScript
项目地址: git://github.com/andykao1213/eslint-plugin-react-hook-form.git
创建时间: 2021-06-08T13:00:42Z
项目社区:https://github.com/andykao1213/eslint-plugin-react-hook-form

开源协议:MIT License

下载


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:

  1. $ npm i eslint --save-dev

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

  1. $ 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:

  1. {
  2. "plugins": ["react-hook-form"]
  3. }

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

  1. {
  2. "rules": {
  3. "react-hook-form/destructuring-formstate": "error"
  4. }
  5. }

or start with the recommended rule set:

  1. {
  2. "extends": "plugin:react-hook-form/recommended"
  3. }

Supported Rules

Rule Description Recommended Fixable
destructuring-formstate Use destructuring assignment to access the properties of formState. ⛔️
no-access-control Avoid accessing the properties of control ⛔️
no-nested-object-setvalue Avoid nested object in second argument of setValue ⛔️ 🔧

Key

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

License

MIT