This repository has been archived on 2023-04-20. You can view files and clone it, but cannot push or open issues or pull requests.
discord-bot/.eslintrc.json

33 lines
811 B
JSON

{
"env": {
"es2021": true,
"node": true
},
"extends": [
"chase"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"no-console": "off",
"no-restricted-syntax": [
"warn",
{
"selector": "CallExpression[callee.object.name='console'][callee.property.name=/^(log)$/]",
"message": "Do not console.log"
}
]
},
"globals": {
"reactionMessageIds": "writable",
"getInfoById": "readonly",
"getConfiguration": "readonly",
"setInfo": "writable",
"setConfiguration": "writable",
"elevatedServers": "readonly",
"APIUrl": "readonly",
"gLocale": "writable"
}
}