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
Especially with protocol buffers, changing messages that are already out there is not recommended. Could we expose a way to disable linting via comments? For instance:
// NOTE: the properties start wtih capital letters in order to flawlessly map to an AWS SQSMessage object// protoc-gen-lint:disablemessageSqsMessage {
stringType=1;
stringMessageId=2;
stringTopicArn=3;
}
// protoc-gen-lint:enable
The text was updated successfully, but these errors were encountered:
Similar to
eslint
and others, could we have a comment to skip linting of specific blocks of code?For instance, in eslint I could do this:
https://eslint.org/docs/user-guide/configuring#disabling-rules-with-inline-comments
Rubocop also has something similar
https://github.com/bbatsov/rubocop/blob/master/manual/configuration.md#disabling-cops-within-source-code
Especially with protocol buffers, changing messages that are already out there is not recommended. Could we expose a way to disable linting via comments? For instance:
The text was updated successfully, but these errors were encountered: