1
{
2
"parser": "babel-eslint",
3
"extends": "airbnb",
4
"plugins": [
5
"react"
6
],
7
"env": {
8
"browser": true
9
},
10
"rules": {
11
"react/jsx-filename-extension": "off",
12
"react/forbid-prop-types": "off"
13
}
14