aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
blob: 40bc712479554c5fedab14a4ae02075aa84fca57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "extends": [
    "standard",
    "standard-jsx",
    "standard-react",
    "plugin:@next/next/recommended"
  ],
  "env": {
    "browser": true,
    "node": true
  },
  "rules": {
    "react/react-in-jsx-scope": "off",
    "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
    "react/prop-types": "off"
  }
}