Archived
0
0
Fork 0

chore: cleaned up code

This commit is contained in:
Daryl Ronningen 2021-06-29 10:56:34 -05:00
parent ddc18ec493
commit 77a4f9121d
Signed by: Daryl Ronningen
GPG key ID: FD23F0C934A5EC6B
2 changed files with 2 additions and 2 deletions

View file

@ -28,10 +28,10 @@ import figlet from 'figlet';
import gradient from 'gradient-string';
import i18next from 'i18next';
import Backend from 'i18next-chained-backend';
import FSBackend from 'i18next-fs-backend';
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
import Fluent from 'i18next-fluent';
import FSBackend from 'i18next-fs-backend';
import { Validator } from 'jsonschema';
import { DateTime } from 'luxon';
import path from 'path';

View file

@ -14,10 +14,10 @@
* You should have received a copy of the GNU General Public License
* along with ArgonBot. If not, see <https: //www.gnu.org/licenses/>.
*/
import type { ICommandOptions } from '@utils/types';
import config from 'config';
import path from 'path';
import type { ICommandOptions } from '@utils/types';
import type { Client, Message } from 'discord.js';
export default abstract class Command {