Hooks를 위한 eslint 플러그인 설치법 - React
설치 $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 } }