plebdevs/.eslintrc.js

7 lines
185 B
JavaScript
Raw Normal View History

2025-04-02 17:46:04 -05:00
module.exports = {
extends: 'next/core-web-vitals',
rules: {
// Turn off exhaustive-deps rule that's causing most of the warnings
'react-hooks/exhaustive-deps': 'off'
}
}