22 lines
360 B
Plaintext
22 lines
360 B
Plaintext
|
{
|
||
|
"ecmaFeatures": {
|
||
|
"jsx": true
|
||
|
},
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"node": true
|
||
|
},
|
||
|
"parser": "babel-eslint",
|
||
|
"plugins": [
|
||
|
"react"
|
||
|
],
|
||
|
"rules": {
|
||
|
"quotes": [2, "single"],
|
||
|
"strict": [2, "never"],
|
||
|
"eol-last": [0],
|
||
|
"new-cap": [2, { "capIsNew": false }],
|
||
|
"react/jsx-uses-react": 2,
|
||
|
"react/jsx-uses-vars": 2,
|
||
|
"react/react-in-jsx-scope": 2
|
||
|
}
|
||
|
}
|