module.exports = { extends: ['airbnb', 'prettier'], plugins: ['prettier', 'react-hooks'], env: { jest: true, }, parser: '@babel/eslint-parser', rules: { 'react/jsx-filename-extension': 'off', 'react/jsx-props-no-spreading': 'off', 'react-hooks/rules-of-hooks': 'error', 'react-hooks/exhaustive-deps': 'warn', }, }