-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
REPEATED_FIELD_NAMES_PLURALIZED should account for uncountable names #447
Comments
That's right. Thank you for letting me know. |
📝 You can implement a workaround to adjust uncountable names by using a config file, such as protolint/_example/config/.protolint.yaml Lines 118 to 120 in 71e6503
|
Our CI job picked up the latest release (0.53.0) and now it's failing due to the following:
How do I allow "preliminary_business_infos" in .protolintrc? Thanks! |
@jduan-highnote You can add repeated_field_names_pluralized:
plural_rules:
"(?i)info$": "infos" |
Tried our suggestion and it worked well! Thanks. |
While adding a field
protolint raised the following issue:
My understanding is that
info
is uncountable, and therefore that the pluralized version ofinfo
is alsoinfo
.The text was updated successfully, but these errors were encountered: