From 171f0a0d67dd0fbe75923ca929b2288698b84c76 Mon Sep 17 00:00:00 2001 From: Neur0toxine Date: Fri, 21 Mar 2025 14:22:28 +0300 Subject: [PATCH] update lint rules --- .golangci.yml | 1 - messenger.go | 2 +- profile.go | 2 +- response.go | 18 +++++++++--------- 4 files changed, 11 insertions(+), 12 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index fa9e330..99585ab 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -34,7 +34,6 @@ linters: - revive - mnd - gosec - - lll - makezero - misspell - nestif diff --git a/messenger.go b/messenger.go index eaf4a64..fa860f5 100644 --- a/messenger.go +++ b/messenger.go @@ -304,7 +304,7 @@ func (m *Messenger) handle(w http.ResponseWriter, r *http.Request) { } if rec.Object != "page" && rec.Object != "instagram" { - fmt.Println("Object is not page or instagram, undefined behaviour. Got", rec.Object) + fmt.Println("Object is not page or instagram, undefined behavior. Got", rec.Object) respond(w, http.StatusUnprocessableEntity) return } diff --git a/profile.go b/profile.go index d5ae231..188565d 100644 --- a/profile.go +++ b/profile.go @@ -13,7 +13,7 @@ type Profile struct { // instagram user profile Username string `json:"username,omitempty"` IsPrivate bool `json:"is_private,omitempty"` - //FollowCount int32 `json:"follow_count,omitempty"` + // FollowCount int32 `json:"follow_count,omitempty"` FollowedByCount int32 `json:"follower_count,omitempty"` // by the documentation followed_by_count IsVerifiedUser bool `json:"is_verified_user"` IsUserFollowBusiness bool `json:"is_user_follow_business"` diff --git a/response.go b/response.go index 9393e23..47479b0 100644 --- a/response.go +++ b/response.go @@ -52,11 +52,11 @@ const ( // NonPromotionalSubscriptionType is NON_PROMOTIONAL_SUBSCRIPTION messaging type. NonPromotionalSubscriptionType MessagingType = "NON_PROMOTIONAL_SUBSCRIPTION" - // NotificationNoPushType is NO_PUSH notification type. No notification + // NotificationNoPushType is NO_PUSH notification type. No notification. NotificationNoPushType NotificationType = "NO_PUSH" - // NotificationRegularType is REGULAR notification type (default). Sound or vibration when a message is received by a person + // NotificationRegularType is REGULAR notification type (default). Sound or vibration when a message is received by a person. NotificationRegularType NotificationType = "REGULAR" - // NotificationSilentPushType is SILENT_PUSH notification type. On-screen notification only + // NotificationSilentPushType is SILENT_PUSH notification type. On-screen notification only. NotificationSilentPushType NotificationType = "SILENT_PUSH" // TopElementStyle is compact. @@ -73,13 +73,13 @@ const ( SenderActionTypingOn SenderAction = "typing_on" SenderActionTypingOff SenderAction = "typing_off" - // TagAccountUpdateType Tags the message you are sending to your customer as a non-recurring update to their application or account. Not available for Instagram Messaging API + // TagAccountUpdateType Tags the message you are sending to your customer as a non-recurring update to their application or account. Not available for Instagram Messaging API. TagAccountUpdateType TagType = "ACCOUNT_UPDATE" - // TagConfirmedEventUpdateType Tags the message you are sending to your customer as a reminder fo an upcoming event or an update for an event in procgres for which the customer is registered. Not available for Instagram Messaging API + // TagConfirmedEventUpdateType Tags the message you are sending to your customer as a reminder fo an upcoming event or an update for an event in procgres for which the customer is registered. Not available for Instagram Messaging API. TagConfirmedEventUpdateType TagType = "CONFIRMED_EVENT_UPDATE" - // TagCustomerFeedbackType Tags the message you are sending to your customer as a Customer Feedback Survey. Customer feedback messages must be sent within 7 days of the customer's last message. Not available for Instagram Messaging API + // TagCustomerFeedbackType Tags the message you are sending to your customer as a Customer Feedback Survey. Customer feedback messages must be sent within 7 days of the customer's last message. Not available for Instagram Messaging API. TagCustomerFeedbackType TagType = "CUSTOMER_FEEDBACK" - // TagHumanAgentType When this tag is added to a message to a customer, it allows a human agent to respond to a person's message. Messages can be sent within 7 days of the person's. Human agent support is for issues that cannot be resolved within the standard 24 hour messaging window + // TagHumanAgentType When this tag is added to a message to a customer, it allows a human agent to respond to a person's message. Messages can be sent within 7 days of the person's. Human agent support is for issues that cannot be resolved within the standard 24 hour messaging window. TagHumanAgentType TagType = "HUMAN_AGENT" // TagPostPurchaseUpdateType Tags the message you are sending to your customer as an update for a recent purchase made by the customer. Not available for Instagram Messaging API. TagPostPurchaseUpdateType TagType = "POST_PURCHASE_UPDATE" @@ -162,7 +162,7 @@ func (r *Response) Text( // only supply tags when messagingType == "MESSAGE_TAG" // (see https://developers.facebook.com/docs/messenger-platform/send-messages#messaging_types for more). // notificationType should be one of the following: "NO_PUSH","REGULAR" (default),"SILENT_PUSH" -// only supply tags when messagingType == "MESSAGE_TAG" (see https://developers.facebook.com/docs/messenger-platform/send-messages#messaging_types for more) +// only supply tags when messagingType == "MESSAGE_TAG" (see https://developers.facebook.com/docs/messenger-platform/send-messages#messaging_types for more). func (r *Response) TextWithReplies( message string, replies []QuickReply, @@ -191,7 +191,7 @@ func (r *Response) TextWithReplies( return r.DispatchMessage(&m) } -// AttachmentWithReplies sends a attachment message with some replies +// AttachmentWithReplies sends a attachment message with some replies. func (r *Response) AttachmentWithReplies( attachment *StructuredMessageAttachment, replies []QuickReply,