aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/macabu/inamedparam/README.md
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2025-01-22 16:07:17 +0100
committerTaras Madan <tarasmadan@google.com>2025-01-23 10:42:36 +0000
commit7b4377ad9d8a7205416df8d6217ef2b010f89481 (patch)
treee6fec4fd12ff807a16d847923f501075bf71d16c /vendor/github.com/macabu/inamedparam/README.md
parent475a4c203afb8b7d3af51c4fd32bb170ff32a45e (diff)
vendor: delete
Diffstat (limited to 'vendor/github.com/macabu/inamedparam/README.md')
-rw-r--r--vendor/github.com/macabu/inamedparam/README.md38
1 files changed, 0 insertions, 38 deletions
diff --git a/vendor/github.com/macabu/inamedparam/README.md b/vendor/github.com/macabu/inamedparam/README.md
deleted file mode 100644
index 3336cb950..000000000
--- a/vendor/github.com/macabu/inamedparam/README.md
+++ /dev/null
@@ -1,38 +0,0 @@
-# inamedparam
-
-A linter that reports interfaces with unnamed method parameters.
-
-## Flags/Config
-```sh
--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:
-```sh
-$ 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:
-```sh
-$ 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:
-```yaml
-run:
- deadline: 30s
-
-linters:
- disable-all: true
- enable:
- - inamedparam
-```