diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-06-21 16:11:14 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-06-21 16:11:14 -0400 |
commit | 982d71f81f00495b9aed518da1b7bdfb4e50010f (patch) | |
tree | 1bc072483748493b195dd561d7f0d27a10fe4dff /src/lib/extensions | |
parent | 4cfd0de634d2883ba84919abc4b9e7ebc025ec27 (diff) | |
download | tanzanite-982d71f81f00495b9aed518da1b7bdfb4e50010f.tar.gz tanzanite-982d71f81f00495b9aed518da1b7bdfb4e50010f.tar.bz2 tanzanite-982d71f81f00495b9aed518da1b7bdfb4e50010f.zip |
fix(*): eslint
Diffstat (limited to 'src/lib/extensions')
-rw-r--r-- | src/lib/extensions/BushClient.ts | 2 | ||||
-rw-r--r-- | src/lib/extensions/BushClientUtil.ts | 10 |
2 files changed, 9 insertions, 3 deletions
diff --git a/src/lib/extensions/BushClient.ts b/src/lib/extensions/BushClient.ts index d0758d4..b12fd52 100644 --- a/src/lib/extensions/BushClient.ts +++ b/src/lib/extensions/BushClient.ts @@ -110,7 +110,7 @@ export class BushClient extends AkairoClient { dialect: 'postgres', host: this.config.db.host, port: this.config.db.port, - logging: (a, b) => this.logger.debug(a) + logging: this.config.logging ? (a) => this.logger.debug(a) : false }); this.logger = new BushLogger(this); } diff --git a/src/lib/extensions/BushClientUtil.ts b/src/lib/extensions/BushClientUtil.ts index 4d428ee..a6b049a 100644 --- a/src/lib/extensions/BushClientUtil.ts +++ b/src/lib/extensions/BushClientUtil.ts @@ -1,3 +1,5 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ +/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { exec } from 'child_process'; import { ClientUtil } from 'discord-akairo'; import { @@ -484,9 +486,13 @@ export class BushClientUtil extends ClientUtil { return array.join(', '); } - public async insertOrRemoveFromGlobal(action: 'add' | 'remove', key: keyof typeof BushCache, value: any) { + public async insertOrRemoveFromGlobal( + action: 'add' | 'remove', + key: keyof typeof BushCache, + value: any + ): Promise<Global | void> { const environment = this.client.config.dev ? 'development' : 'production'; - let row = await Global.findByPk(environment); + const row = await Global.findByPk(environment); const oldValue: any[] = row[key]; let newValue: any[]; if (action === 'add') { |