xmpp-bot/.eslintrc.json

20 lines
331 B
JSON
Raw Permalink Normal View History

2019-10-13 03:38:25 +02:00
{
"env": {
"commonjs": true,
"es6": true,
2019-10-20 03:01:59 +02:00
"node": true,
"mocha": true
2019-10-13 03:38:25 +02:00
},
"extends": [
"standard"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
}
}