import nextVitals from 'eslint-config-next/core-web-vitals'; const config = [ ...nextVitals, { ignores: ['.next/**', 'node_modules/**'], }, { rules: { 'react-hooks/immutability': 'off', 'react-hooks/purity': 'off', 'react-hooks/refs': 'off', 'react-hooks/set-state-in-effect': 'off', }, }, ]; export default config;