aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
blob: c580ca7e1efb0d93ab3f0371ca921c0283f522f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "extends": [
    "next/core-web-vitals",
    "eslint:recommended",
    "plugin:react/recommended",
    "plugin:react-hooks/recommended",
    "plugin:@next/next/recommended",
    "next",
    "prettier"
  ],
  "ignorePatterns": ["postcss.config.js"],
  "rules": {
    "no-redeclare": "off",
    "@next/next/no-html-link-for-pages": "off"
  }
}