Skip to content

✍️ A linter that reports interfaces with unnamed method parameters

License

Notifications You must be signed in to change notification settings

macabu/inamedparam

Repository files navigation

inamedparam

A linter that reports interfaces with unnamed method parameters.

Flags/Config

-skip-single-param
    skip interfaces with a single unnamed parameter

Usage

Standalone

You can run it standalone through go vet.

You must install the binary to your $GOBIN folder like so:

$ go install github.com/macabu/inamedparam/cmd/inamedparam

And then navigate to your Go project's root folder, where can run go vet in the following way:

$ go vet -vettool=$(which inamedparam) ./...

golangci-lint

inamedparam was added as a linter to golangci-lint on version v1.55.0. It is disabled by default.

To enable it, you can add it to your .golangci.yml file, as such:

run:
  deadline: 30s 

linters:
  disable-all: true
  enable:
    - inamedparam

About

✍️ A linter that reports interfaces with unnamed method parameters

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages