1.0.4 • Published 3 years ago

eslint-plugin-react-hooks-safe-option v1.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

基于 eslint-plugin-react-hooks 修改,支持添加 safe-hooks-option 选项

function useCustom() {
  const ref = useRef(0)
  return [ref]
}
/* .eslintrc.js */
"plugins": ["react-hooks-safe-option"],
"rules": {
    "react-hooks-safe-option/rules-of-hooks": "error",
    "react-hooks-safe-option/exhaustive-deps": [
      "error",
      {
        // "additionalHooks": "useImmer"
        "safeHooks": "(useImmer[1]|useCustom[0])",
      },
    ],
  },
1.0.2

3 years ago

1.0.1

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.0

3 years ago