ksprojects / protobuf-jetbrains-plugin

Protobuf Support for JetBrains IDEs
https://plugins.jetbrains.com/plugin/8277
Apache License 2.0
259 stars 46 forks source link

Support `required` keyword #122

Closed Jeff-Tian closed 5 years ago

Jeff-Tian commented 5 years ago

Highlight the keyword required.

Currently the keyword required is not supported, and shows an error message:

Field Label 'required' is not allowed.

image

kshchepanovskyi commented 5 years ago

Required fields are not supported in proto3.

Message fields can be one of the following:

Jeff-Tian commented 5 years ago

Thanks @kshchepanovskyi