You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
node-telegram-bot-api/.eslintrc

18 lines
312 B

{
"extends": "airbnb/base",
"parser": "babel-eslint",
"rules": {
"new-cap": 0,
"prefer-arrow-callback": 0,
"no-param-reassign": [2,{"props":false}],
"max-len": [2, 150],
"arrow-body-style": 0,
"comma-dangle": 0
},
"plugins": [
"mocha"
],
"env": {
"mocha": true
}
}