mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-14 00:16:21 +00:00
40 lines
546 B
JSON
40 lines
546 B
JSON
|
{
|
||
|
"root": true,
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 6
|
||
|
},
|
||
|
"env": {
|
||
|
"browser": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"eslint:recommended"
|
||
|
],
|
||
|
"rules": {
|
||
|
"curly": [
|
||
|
"error",
|
||
|
"all"
|
||
|
],
|
||
|
"no-console": 0,
|
||
|
"semi": [
|
||
|
"error",
|
||
|
"never"
|
||
|
],
|
||
|
"space-before-function-paren": [
|
||
|
"error",
|
||
|
{
|
||
|
"anonymous": "always",
|
||
|
"named": "never",
|
||
|
"asyncArrow": "always"
|
||
|
}
|
||
|
],
|
||
|
"quotes": [
|
||
|
"error",
|
||
|
"single"
|
||
|
],
|
||
|
"indent": [
|
||
|
"error",
|
||
|
2
|
||
|
]
|
||
|
}
|
||
|
}
|