This repository has been archived on 2024-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Maneger/.eslintrc.json
Matheus Sampaio Queiroga f2b1377867 Move files from Scripts/ to src/ and add 'on' to start server. (#144)
Some new functions were added and Scripts/ were moved to src/
2021-08-02 19:33:21 -03:00

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