UT
Hi Jarrod, Great article, I have a similar kind of setup. One thing which does not work in a nextjs app with eslint / prettier is that custom directories like a hooks or an utils directory do not get formatted. Any idea how to fix that? I googled quite a lot the only thing I found is adding the directories in the next.config.js file, but that only seems to work after building the application. /** @type {import('next').NextConfig} */ module.exports = { reactStrictMode: true, eslint: { dirs: ['pages', 'components', 'utils', 'lib', 'hooks', 'types'] } }