mirror of
https://github.com/greg-js/arch-wiki-man
synced 2024-11-19 09:25:30 +00:00
23 lines
374 B
Plaintext
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"
|
|
]
|
|
}
|