79741200

Date: 2025-08-20 14:34:01
Score: 1
Natty:
Report link

After the latest next update, I faced the same issue. I added the file

next-env.d.ts

to eslint.config.mjs ignore, but as it did not worked, I had to add this:


  {
    files: ["next-env.d.ts"], // 👈 override
    rules: {
      "@typescript-eslint/triple-slash-reference": "off",
    },
  }
Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Daniel Santana