diff options
author | Vitaly Takmazov | 2023-05-19 02:39:47 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-05-19 02:54:34 +0300 |
commit | 71acbc9791ad42f99757feb9ed03e208fd09aa70 (patch) | |
tree | 02be8ff9af14bcc3592c442c95fe1596391856f6 /vnext/server/common | |
parent | 56c7241c2ff3e62b2f6f8064f985181f4387dd3d (diff) |
Fix linter warnings
Diffstat (limited to 'vnext/server/common')
-rw-r--r-- | vnext/server/common/MessageUtils.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/vnext/server/common/MessageUtils.js b/vnext/server/common/MessageUtils.js index 74638c02..b7ed8ec0 100644 --- a/vnext/server/common/MessageUtils.js +++ b/vnext/server/common/MessageUtils.js @@ -1,8 +1,5 @@ -import config from 'config'; - /** * check if message is PM - * * @param {import('../../src/api').Message} msg message */ export function isPM(msg) { @@ -11,7 +8,6 @@ import config from 'config'; /** * check if message is reply - * * @param {import('../../src/api').Message} msg message */ export function isReply(msg) { @@ -20,7 +16,6 @@ export function isReply(msg) { /** * check if message is service one - * * @param {import('../../src/api').Message} msg message */ export function isService(msg) { @@ -29,7 +24,6 @@ export function isService(msg) { /** * format notification title - * * @param {import('../../src/api').Message} msg message * @returns {string} formatted title */ @@ -44,7 +38,6 @@ export function formatTitle(msg) { /** * format notification quote - * * @param { import('../../src/api').Message } msg message * @returns {string} formatted quote line */ @@ -59,7 +52,6 @@ export function formatQuote(msg) { /** * format notification body - * * @param {import('../../src/api').Message} msg message * @returns {string} formatted body */ |