reviewdog / errorformat

Vim's quickfix errorformat implementation in Go
https://reviewdog.github.io/errorformat-playground/
MIT License
108 stars 43 forks source link

Change the type of error type from rune to string #108

Open ken109 opened 2 years ago

ken109 commented 2 years ago

When using Stylelint, ✖ , ⚠ is used to distinguish Error and Warning. At present, it was not possible to distinguish because rune type was used to type of error, but it was distinguished by changing to string type.