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

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"
]
}