Closed
Description
I'm not sure if this is again only something I haven't found in the docs, but -- it would be very nice if golangci-lint
could be configured to ignore files that have been generated. One way we've used this with GML was to configure an "exclude pattern" of *.pb.*.go
, like
{
"Exclude": [
".*\\.pb\\.go"
]
}
Any way to achieve that, short of (pre-)filtering the list of files to check?