aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
blob: 2bf46012eb77273318d47f61010d58da82dc3279 (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
26
{
  "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 },
  "parser": "babel-eslint",
  "plugins": [],
  "parserOptions": {
    "ecmaVersion": 2019,
    "sourceType": "module",
    "ecmaFeatures": {
      "jsx": true
    }
  },
  "env": {
    "es6": true,
    "browser": true,
    "node": true
  },
  "settings": { "react": { "version": "detect" } }
}