From e6ce10431d32aa32f71439a1f3f3956052b123bc Mon Sep 17 00:00:00 2001 From: Johnson Chen Date: Tue, 12 May 2020 02:16:39 +1000 Subject: [PATCH] docs: disable max-len rule and add info about receiving parameter --- src/structures/Guild.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/structures/Guild.js b/src/structures/Guild.js index 728365d2b..d58625de3 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -8,6 +8,7 @@ const Integration = require('./Integration'); const Invite = require('./Invite'); const VoiceRegion = require('./VoiceRegion'); const Webhook = require('./Webhook'); + const GuildChannelManager = require('../managers/GuildChannelManager'); const GuildEmojiManager = require('../managers/GuildEmojiManager'); const GuildMemberManager = require('../managers/GuildMemberManager'); @@ -312,11 +313,14 @@ class Guild extends Base { */ this.vanityURLCode = data.vanity_url_code; + /* eslint-disable max-len */ /** * The use count of the vanity URL code of the guild, if any + * You will need to fetch the guild using {@link Guild#fetchVanityCode} if you want to receive this parameter * @type {?number} */ this.vanityURLUses = null; + /* eslint-enable max-len */ /** * The description of the guild, if any