Files
stats/tooling/eslint/nextjs.js
Carl-Gerhard Lindesvärd 308ae98472 migrate to app dir and ssr
2024-01-20 22:54:38 +01:00

10 lines
177 B
JavaScript

/** @type {import('eslint').Linter.Config} */
const config = {
extends: ['next'],
rules: {
'@next/next/no-html-link-for-pages': 'off',
},
};
module.exports = config;