iambpn / vscode-proto-setup

Guide on how to setup Proto syntax and error highlight in vscode

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vscode-proto-setup

Guide on how to setup Proto syntax and error highlight in vscode


Steps:

  1. Install vscode extension: vsode-proto3
  2. Install protoc compiler: protoc
  3. Under .vscode folder settings.json add following: Link to StackOverflow
    "protoc": {
       // need to add this to remove import error in proto file
       "options": [
         "--proto_path=<proto folders>"
       ]
     }

About

Guide on how to setup Proto syntax and error highlight in vscode