1. {
    
  2.   "root": true,
    
  3.   "parserOptions": {
    
  4.     "ecmaVersion": 8,
    
  5.     "sourceType": "module",
    
  6.     "ecmaFeatures": {
    
  7.       "jsx": true
    
  8.     }
    
  9.   },
    
  10.   "plugins": ["react-hooks"],
    
  11.   "rules": {
    
  12.     "react-hooks/rules-of-hooks": 2,
    
  13.     "react-hooks/exhaustive-deps": 2
    
  14.   }
    
  15. }