You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've go the following struct which i would think should trigger duplicate word detection. After skimming the code I think the duplicate aren't found for two major reasons.
camel case identifiers aren't split into separate words
struct fields / tags aren't inspected
typeUnderwritingCardVolumeDistributionstruct {
CardPresentPercentagePercentageint64`json:"cardPresentPercentage,omitempty"`// want `Duplicate words \(Percentage\) found`CardPresentPercentageint64`json:"cardPresentPercentagePercentage,omitempty"`// want `Duplicate words \(Percentage\) found`
}
The text was updated successfully, but these errors were encountered:
Thanks for the suggestion, it's true that the current release didn't handle CamelCase words, and it's true that we should try to add this feature in the next release.
I've go the following struct which i would think should trigger duplicate word detection. After skimming the code I think the duplicate aren't found for two major reasons.
The text was updated successfully, but these errors were encountered: