Hello,
I'm using the external waiver file to waive lint errors (verible-verilog-lint) and I was wondering if someone knows a way to waive multiple lines with a single waiver, maybe with a --regex expression, or some other method?
Note: I cannot use the --line=5:10 method as the file is partially autogenerated and depending on the parameter settings etc. the failing lines will shift up and down by an unknown amount.
For example,
```systemverilog
assign var1 = <insert enough characters to fail line-length>
// some comments maybe
assign var2 = <insert enough characters to fail line-length>
assign var3 = <insert enough characters to fail line-length>
```
And the waiver file could have something like:
```
```
(I'm no regex expert, but the middle (.*) is meant to include all chars, including newlines). The idea being, the lines of code from "assign var1" through "assign var3" inclusive would be waived for line length.
The purpose being it would save me from writing three lines in the waive file:
```
I know I sound lazy, but I was thinking since there's a regex engine, maybe this is easy to implement? Or maybe it's just that I'm crap at regex's and this already works if I correct my regex :-)
Thanks!
Mark