chipsalliance / verible-linter-action

Automatic SystemVerilog linting in github actions with the help of Verible
Apache License 2.0
24 stars 11 forks source link

Colon is missing from error messages produced by reviewdog #15

Closed imphil closed 2 years ago

imphil commented 2 years ago

Reviewdog reports (e.g. here)

Unpacked dimension range must be declared in big-endian ([0N-1]) order. Declare zero-based big-endian unpacked dimensions sized as [N]. [Style unpacked-ordering] [unpacked-dimensions-range-ordering]

Look at the "[0N-1]" string, which should be "[0:N-1]" (the Verible source code agrees with me).

We somewhere loose the colon in the path between Verible and the GH action reporting.