{ "parser": "babel-eslint", "extends": [ "eslint:recommended", "plugin:import/recommended", "plugin:react/recommended", "plugin:flowtype/recommended" ], "plugins": ["import", "flowtype", "react", "react-hooks"], "parserOptions": { "sourceType": "module" }, "settings": { "flowtype": { "onlyFilesWithFlowAnnotation": true }, "react": { "version": "detect" } }, "env": { "browser": true, "es6": true, "node": false }, "rules": { "react/prop-types": 0, "react-hooks/rules-of-hooks": "error", "react-hooks/exhaustive-deps": "warn" } }