HTML, DOM, Node.js
Hooks를 위한 eslint 플러그인 설치법 - React
파란배개
2021. 1. 7. 11:42
설치
$npm install eslint-plugin-react-hooks --save-dev
eslint 설정
// Your ESLint configuration
{
"plugins": [
// ...
"react-hooks"
],
"rules": {
// ...
"react-hooks/rules-of-hooks": "error", // Checks rules of Hooks
"react-hooks/exhaustive-deps": "warn" // Checks effect dependencies
}
}