Skip to content

Commit

Permalink
Fix lint errors for src/plugins/moreKaomoji/index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
zeon-neon[bot] authored May 31, 2024
1 parent 210e05c commit 84b67fe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/plugins/moreKaomoji/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
* SPDX-License-Identifier: GPL-3.0-or-later
*/

import { findOption, OptionalMessageOption } from '@api/Commands';
import { Devs } from '@utils/constants';
import definePlugin from '@utils/types';
import { findOption, OptionalMessageOption } from '@api/Commands'
import { Devs } from '@utils/constants'
import definePlugin from '@utils/types'
// @see https://github.com/dysfunc/ascii-emoji/blob/master/emojis
const more_emojis = `
4chan-emoticon:( ͡° ͜ʖ ͡°)
Expand Down Expand Up @@ -119,7 +119,7 @@ wizard:(∩`-´)⊃━☆゚.*・。゚
worried:(´・_・\`)
yum:(っ˘ڡ˘ς)
zombie:[¬º-°]¬
zoned:(⊙_◎)`.split('\n').filter(Boolean);
zoned:(⊙_◎)`.split('\n').filter(Boolean)

export default definePlugin({
name: 'MoreKaomoji',
Expand Down Expand Up @@ -149,4 +149,4 @@ export default definePlugin({
content: findOption(opts, 'message', '') + data.description
})
}))
});
})

0 comments on commit 84b67fe

Please sign in to comment.