TravisTheTechie / vscode-write-good

Write Good Linter for Visual Studio Code
MIT License
58 stars 7 forks source link

Colorize differenty errors #15

Closed atanasj closed 4 years ago

atanasj commented 4 years ago

Is there a way to apply different colors to the different errors e.g., weasel, passive, etc?

TravisTheTechie commented 4 years ago

Not explicitly, there's a DiagnosticSeverity (Error, Warning, Information, or Hint -- I use Warning) that can be set and might be able to indirectly pick a color given the severity setting. That's really the best I can think of given the API surface I have to work with.

atanasj commented 4 years ago

Okay, thanks for your response and helpful extension!