aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
blob: 38293435418d7a42d52331c7cc2b0d0c30a2cfd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  "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",
    "no-undef": "off",
    "react/jsx-no-undef": "off",
    "no-unused-vars": [
      "error",
      {
        "varsIgnorePattern": "^_",
        "argsIgnorePattern": "^_"
      }
    ]
  }
}