mirror of
https://github.com/dscalzi/HeliosLauncher.git
synced 2024-10-31 19:36:39 -07:00
50 lines
962 B
JSON
50 lines
962 B
JSON
|
{
|
||
|
"env": {
|
||
|
"es6": true,
|
||
|
"node": true
|
||
|
},
|
||
|
"extends": "eslint:recommended",
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 2017,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"rules": {
|
||
|
"indent": [
|
||
|
"error",
|
||
|
4,
|
||
|
{
|
||
|
"SwitchCase": 1
|
||
|
}
|
||
|
],
|
||
|
"linebreak-style": [
|
||
|
"error",
|
||
|
"windows"
|
||
|
],
|
||
|
"quotes": [
|
||
|
"error",
|
||
|
"single"
|
||
|
],
|
||
|
"semi": [
|
||
|
"error",
|
||
|
"never"
|
||
|
],
|
||
|
"no-var": [
|
||
|
"error"
|
||
|
],
|
||
|
"no-console": [
|
||
|
0
|
||
|
],
|
||
|
"no-control-regex": [
|
||
|
0
|
||
|
],
|
||
|
"no-unused-vars": [
|
||
|
"error",
|
||
|
{
|
||
|
"vars": "all",
|
||
|
"args": "none",
|
||
|
"ignoreRestSiblings": false,
|
||
|
"argsIgnorePattern": "reject"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|