You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
511 B

{
"extends": [
"airbnb"
],
"plugins": [
"react"
],
"rules": {
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"arrow-body-style": [2, "as-needed"],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/prefer-stateless-function": "off"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true
}
}