I try go1.16
import "embed"
I get
> golangci-lint run ./... > Can't run linter goanalysis_metalinter: bodyclose: failed prerequisites ... could not import embed
how skip file/package in golangci-lint?
You can customize the behavior with a config file. Docs are here https://golangci-lint.run/usage/configuration/. Make a .golangci.yml file that looks like this:
.golangci.yml
run: skip-files: - main.go
You can add //nolint to the top of the file.
//nolint
//nolint package foo
See https://golangci-lint.run/usage/false-positives/
Using a config file
You can customize the behavior with a config file. Docs are here https://golangci-lint.run/usage/configuration/. Make a
.golangci.yml
file that looks like this://nolint
You can add
//nolint
to the top of the file.See https://golangci-lint.run/usage/false-positives/