30 lines
601 B
JSON
30 lines
601 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"commonjs": true,
|
|
"es2021": true,
|
|
"node": true
|
|
},
|
|
"globals": {
|
|
"bds_log_string": "writable",
|
|
"bds_server_string": "writable",
|
|
"external_ip": "writable"
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"rules": {
|
|
"quotes": [
|
|
"error",
|
|
"double"
|
|
],
|
|
"eqeqeq": 0,
|
|
"no-async-promise-executor": "off"
|
|
}
|
|
}
|