arch-wiki-man/.eslintrc
Gregory Scheerlinck 1673174a85 first commit
2016-01-30 15:11:55 +00:00

23 lines
374 B
Plaintext

{
"extends": "airbnb/legacy",
"rules": {
"strict": [2, "global"],
"no-multi-spaces": 0,
"no-use-before-define": 0,
"no-console": 0,
"padded-blocks": 0,
"no-else-return": 0
},
"env": {
"es6": true,
"browser": true
},
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
},
"plugins": [
"react"
]
}