Currently, we have a bunch of rules like
files:
- "!**/pkg/a/**"
- "!**/pkg/b/**"
Ideally we could write something like
files:
- "!./pkg/a/**"
- "!./pkg/b/**"
Or
files:
- "!$root/pkg/a/**"
- "!$root/pkg/b/**"
Where this is relative to is up to debate, but probably the module root makes the most sense?
ps: thanks for the great linter!
Currently, we have a bunch of rules like
Ideally we could write something like
Or
Where this is relative to is up to debate, but probably the module root makes the most sense?
ps: thanks for the great linter!