aboutsummaryrefslogtreecommitdiffstats
path: root/tooling/eslint/nextjs.js
blob: 169993e359d3f7f0a827426eb8e7678ac2404746 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/** @type {import('eslint').Linter.Config} */
const config = {
  extends: ["plugin:@next/next/core-web-vitals"],
  rules: {
    "@next/next/no-html-link-for-pages": "off",
    "@typescript-eslint/require-await": "off",
  },
};

module.exports = config;