mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-16 19:43:29 +01:00
refactor: don't disable import order lint (#7262)
This commit is contained in:
@@ -1,13 +1,12 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
/* eslint-disable import/order */
|
|
||||||
const MessageCollector = require('../MessageCollector');
|
|
||||||
const MessagePayload = require('../MessagePayload');
|
|
||||||
const { Collection } = require('@discordjs/collection');
|
const { Collection } = require('@discordjs/collection');
|
||||||
const { DiscordSnowflake } = require('@sapphire/snowflake');
|
const { DiscordSnowflake } = require('@sapphire/snowflake');
|
||||||
const { TypeError, Error } = require('../../errors');
|
|
||||||
const { InteractionType } = require('discord-api-types/v9');
|
const { InteractionType } = require('discord-api-types/v9');
|
||||||
|
const { TypeError, Error } = require('../../errors');
|
||||||
const InteractionCollector = require('../InteractionCollector');
|
const InteractionCollector = require('../InteractionCollector');
|
||||||
|
const MessageCollector = require('../MessageCollector');
|
||||||
|
const MessagePayload = require('../MessagePayload');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface for classes that have text-channel-like features.
|
* Interface for classes that have text-channel-like features.
|
||||||
@@ -357,4 +356,5 @@ class TextBasedChannel {
|
|||||||
module.exports = TextBasedChannel;
|
module.exports = TextBasedChannel;
|
||||||
|
|
||||||
// Fixes Circular
|
// Fixes Circular
|
||||||
|
// eslint-disable-next-line import/order
|
||||||
const MessageManager = require('../../managers/MessageManager');
|
const MessageManager = require('../../managers/MessageManager');
|
||||||
|
|||||||
Reference in New Issue
Block a user