gofmt: bring internal/ and cmd/ back to gofmt -l clean

Mechanical `gofmt -w ./internal ./cmd`. Mostly struct-field realignment that
had drifted, plus a few trailing-newline fixes. No behaviour change — gofmt is
semantics-preserving, and build/vet/test are green either side.

Split out from the code-review fixes that follow so those stay reviewable
instead of hiding inside a wall of realignment.
This commit is contained in:
prosolis
2026-07-10 07:18:07 -07:00
parent 08d3053368
commit 3369d7d8fe
108 changed files with 1248 additions and 1260 deletions

View File

@@ -53,13 +53,13 @@ type modConfig struct {
RepeatSimilarityThreshold float64
// Mention flood
MentionMax int
MentionFloodCount int
MentionMax int
MentionFloodCount int
MentionFloodWindowSeconds int
// Link rate (new members)
LinkRateNewMember int
LinkRateWindowSeconds int
LinkRateNewMember int
LinkRateWindowSeconds int
// Invite flooding
InviteMaxPerHour int
@@ -123,16 +123,16 @@ func loadModConfig() modConfig {
// ---------------------------------------------------------------------------
var dmTemplates = map[string]string{
"strike1_word": "Hey — that word isn't something we allow in this community. Your message has been removed. This has been noted. Please keep it in mind going forward.",
"strike1_flood": "Hey — looks like you might have gotten a bit trigger-happy there. Slow it down a little. Your messages have been removed and this has been noted.",
"strike1_wall": "Hey — that message was way too long for this room. It's been removed and noted. Please keep it shorter.",
"strike1_repeat": "Hey — repeating the same message isn't cool. Your messages have been removed and this has been noted.",
"strike1_word": "Hey — that word isn't something we allow in this community. Your message has been removed. This has been noted. Please keep it in mind going forward.",
"strike1_flood": "Hey — looks like you might have gotten a bit trigger-happy there. Slow it down a little. Your messages have been removed and this has been noted.",
"strike1_wall": "Hey — that message was way too long for this room. It's been removed and noted. Please keep it shorter.",
"strike1_repeat": "Hey — repeating the same message isn't cool. Your messages have been removed and this has been noted.",
"strike1_mention": "Hey — too many mentions in a short time. Please don't mass-ping. This has been noted.",
"strike1_link": "Hey — slow down on the links. New members have a limit. This has been noted.",
"strike1_invite": "Hey — you've been sending too many invites. This has been flagged and noted.",
"strike2": "This is the second time we've had to step in. You've been muted for %s. When you're back, please keep the community guidelines in mind. This is your last warning before a permanent ban.",
"strike3": "This is the third strike. You're being removed from the community permanently. Take care.",
"manual_warn": "A community admin has issued you a formal warning: %s. Please keep this in mind.",
"strike1_link": "Hey — slow down on the links. New members have a limit. This has been noted.",
"strike1_invite": "Hey — you've been sending too many invites. This has been flagged and noted.",
"strike2": "This is the second time we've had to step in. You've been muted for %s. When you're back, please keep the community guidelines in mind. This is your last warning before a permanent ban.",
"strike3": "This is the third strike. You're being removed from the community permanently. Take care.",
"manual_warn": "A community admin has issued you a formal warning: %s. Please keep this in mind.",
}
// ---------------------------------------------------------------------------