From b8216ca2aa34ff5dd64d3dd2c5e7585c98964e5c Mon Sep 17 00:00:00 2001 From: Shintaro Ikeda Date: Sat, 30 May 2020 13:23:47 +0900 Subject: [PATCH] Update not found url in new-linters.mdx (#1171) --- docs/src/docs/contributing/new-linters.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/docs/contributing/new-linters.mdx b/docs/src/docs/contributing/new-linters.mdx index a01897a48765..0320a4923d44 100644 --- a/docs/src/docs/contributing/new-linters.mdx +++ b/docs/src/docs/contributing/new-linters.mdx @@ -76,7 +76,7 @@ type AnalyzerPlugin interface { ``` The type of `AnalyzerPlugin` is not important, but is by convention `type analyzerPlugin struct {}`. See -[plugin/example.go](https://github.com/golangci/example-plugin-linter/plugin/example.go) for more info. +[plugin/example.go](https://github.com/golangci/example-plugin-linter/blob/master/plugin/example.go) for more info. To build the plugin, from the root project directory, run `go build -buildmode=plugin plugin/example.go`. This will create a plugin `*.so` file that can be copied into your project or another well known location for usage in golangci-lint.