aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
blob: c1af9619724bca2c12920b3fa0e7cde4e5a6f66b (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": [
    "eslint:recommended",
    "plugin:import/errors",
    "plugin:react/recommended",
    "plugin:jsx-a11y/recommended",
    "prettier",
    "prettier/react"
  ],
  "rules": { "react/prop-types": 0, "no-console": 1, "no-unused-vars": 1 },
  "plugins": [],
  "parserOptions": {
    "ecmaVersion": 2019,
    "sourceType": "module",
    "ecmaFeatures": {
      "jsx": true
    }
  },
  "env": {
    "es6": true,
    "browser": true,
    "node": true
  },
  "settings": { "react": { "version": "detect" } }
}