Skip to content

Commit

Permalink
refactor: don't disable import order lint (#7262)
Browse files Browse the repository at this point in the history
  • Loading branch information
vaporoxx committed Jan 13, 2022
1 parent 0dd56af commit 0a5d5f3
Showing 1 changed file with 4 additions and 4 deletions.
@@ -1,13 +1,12 @@
'use strict';

/* eslint-disable import/order */
const MessageCollector = require('../MessageCollector');
const MessagePayload = require('../MessagePayload');
const { Collection } = require('@discordjs/collection');
const { DiscordSnowflake } = require('@sapphire/snowflake');
const { TypeError, Error } = require('../../errors');
const { InteractionType } = require('discord-api-types/v9');
const { TypeError, Error } = require('../../errors');
const InteractionCollector = require('../InteractionCollector');
const MessageCollector = require('../MessageCollector');
const MessagePayload = require('../MessagePayload');

/**
* Interface for classes that have text-channel-like features.
Expand Down Expand Up @@ -357,4 +356,5 @@ class TextBasedChannel {
module.exports = TextBasedChannel;

// Fixes Circular
// eslint-disable-next-line import/order
const MessageManager = require('../../managers/MessageManager');

0 comments on commit 0a5d5f3

Please sign in to comment.