about summary refs log tree commit diff
path: root/.eslintrc
blob: 10bf705462802a8fd55edc73391159f9757fac81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "env": {
    "browser": true,
    "node": false,
    "es6": true
  },

  "parser": "babel-eslint",

  "plugins": [
    "react"
  ],

  "parserOptions": {
    "sourceType": "module",

    "ecmaFeatures": {
      "jsx": true
    },
  },
}