mirror of
https://github.com/yagop/node-telegram-bot-api
synced 2025-08-22 01:47:25 +00:00
* test: stopPoll * test: setChatStickerSet and deleteChatStickerSet * refactor: src/telegram.js * Remove legacy methods: - getChatMembersCount - getChatMembersCount - kickChatMember * Remove mandatory param “start_parameter” from sendInvoice, because actually is a optional param * docs: Update docs API * docs: Update * fix: addStickerToSet * fix: stringify * refactor: And add deleteStickerFromSet + setStickerPositionInSet * fix: eslint * docs: Update changelog
19 lines
340 B
Plaintext
19 lines
340 B
Plaintext
{
|
|
"extends": "airbnb/base",
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"new-cap": 0,
|
|
"prefer-arrow-callback": 0,
|
|
"no-param-reassign": [2,{"props":false}],
|
|
"max-len": [2, 200],
|
|
"arrow-body-style": 0,
|
|
"comma-dangle": 0,
|
|
"indent": ["error", 2]
|
|
},
|
|
"plugins": [
|
|
"mocha"
|
|
],
|
|
"env": {
|
|
"mocha": true
|
|
}
|
|
} |