├── .gitIgnore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── semantic-pull-request.yml │ └── unit-test.yml ├── .vscode └── launch.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── docs └── rules │ ├── destructuring-formstate.md │ ├── no-access-control.md │ ├── no-nested-object-setvalue.md │ └── no-use-watch.md ├── lib ├── index.js ├── rules │ ├── destructuring-formstate.js │ ├── no-access-control.js │ ├── no-nested-object-setvalue.js │ └── no-use-watch.js └── utils │ └── findPropertyByName.js ├── package.json └── tests └── lib ├── rules ├── destructuring-formstate.js ├── no-access-control.js ├── no-nested-object-setvalue.js └── no-use-watch.js └── utils └── normalizeIndent.js /.gitIgnore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/semantic-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/.github/workflows/semantic-pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/unit-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/.github/workflows/unit-test.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/README.md -------------------------------------------------------------------------------- /docs/rules/destructuring-formstate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/docs/rules/destructuring-formstate.md -------------------------------------------------------------------------------- /docs/rules/no-access-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/docs/rules/no-access-control.md -------------------------------------------------------------------------------- /docs/rules/no-nested-object-setvalue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/docs/rules/no-nested-object-setvalue.md -------------------------------------------------------------------------------- /docs/rules/no-use-watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/docs/rules/no-use-watch.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/rules/destructuring-formstate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/lib/rules/destructuring-formstate.js -------------------------------------------------------------------------------- /lib/rules/no-access-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/lib/rules/no-access-control.js -------------------------------------------------------------------------------- /lib/rules/no-nested-object-setvalue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/lib/rules/no-nested-object-setvalue.js -------------------------------------------------------------------------------- /lib/rules/no-use-watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/lib/rules/no-use-watch.js -------------------------------------------------------------------------------- /lib/utils/findPropertyByName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/lib/utils/findPropertyByName.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/package.json -------------------------------------------------------------------------------- /tests/lib/rules/destructuring-formstate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/tests/lib/rules/destructuring-formstate.js -------------------------------------------------------------------------------- /tests/lib/rules/no-access-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/tests/lib/rules/no-access-control.js -------------------------------------------------------------------------------- /tests/lib/rules/no-nested-object-setvalue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/tests/lib/rules/no-nested-object-setvalue.js -------------------------------------------------------------------------------- /tests/lib/rules/no-use-watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/tests/lib/rules/no-use-watch.js -------------------------------------------------------------------------------- /tests/lib/utils/normalizeIndent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andykao1213/eslint-plugin-react-hook-form/HEAD/tests/lib/utils/normalizeIndent.js --------------------------------------------------------------------------------