We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
AIP-191 states File names must use snake_case but api-linter does not check for invalid characters.
api-linter
Valid Character Ranges include: a-z A-Z 0-9 _
a-z
A-Z
0-9
_
Anything else could be considered invalid.
As an example, a proto filename should be test_service.proto not test.service.proto
test_service.proto
test.service.proto
Question: Should A-Z be considered valid?
The text was updated successfully, but these errors were encountered:
parthea
Successfully merging a pull request may close this issue.
AIP-191 states File names must use snake_case but
api-linter
does not check for invalid characters.Valid Character Ranges include:
a-z
A-Z
0-9
_
Anything else could be considered invalid.
As an example, a proto filename should be
test_service.proto
nottest.service.proto
Question: Should
A-Z
be considered valid?The text was updated successfully, but these errors were encountered: