xmpp-bot/.eslintrc.json

19 lines
308 B
JSON
Raw Normal View History

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