plexsystems / vscode-protolint

A protobuf linter for visual studio code
MIT License
54 stars 14 forks source link

No output #37

Closed zchrissirhcz closed 9 months ago

zchrissirhcz commented 1 year ago

I write a simple buggy .proto file, in which the semicolon chars are missing (in line1 and line3):

syntax = "proto3"

package tutorial

message Person
{
    string name =1;
    int32 id = 2;
    string email = 3;
}

Using command-line protolint gives normal output (in powershell): image

However, in VSCode's command palette, >Protolint: Lint protobuf file gives no output, no pop-up window.

Moving mouse to the squirrel, I see this: image

I'm curious why there is no pop-up window showing protolint result?

zchrissirhcz commented 1 year ago

There is protolint path configured in my settings.json:

image