- Notifications
You must be signed in to change notification settings - Fork11
dbraley/example-linter
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This is an example linter that can be compiled into a plugin forgolangci-lint.
To use this:
- Download the source code *
- From the root project directory, run
go build -buildmode=plugin plugin/example.go. - Copy the generated
example.sofile into your project or to some other known location of your choosing. **
In order to use plugins, you'll need a golangci-lint executable that can run them. Plugin dependencies defined in thego.mod file MUST have a matching version (or hash) as the same dependency in thgolangci-lint binary if thedependency is used in both. Because of the high probability of this both using the same dependency, it is recommendedto use a locally built binary. To do so:
- Downloadgolangci-lint source code
- From the projects root directory, run
make - Copy the
golangci-lintexecutable that was created to your path, project, or other location
If you already have a linter plugin available, you can follow these steps to define its usage in a projects.golangci.yml file. If you're looking for instructions on how to configure your own custom linter, they can be foundfurther down.
- If the project you want to lint does not have one already, copy the.golangci.ymlto the root directory.
- Adjust the yaml to appropriate
linters-settings:customentries as so:
linters-settings: custom: example: path: /example.so description: The description of the linter original-url: github.com/golangci/example-linterThat is all the configuration that is required to run a custom linter in your project. Custom linters are enabled by default,but abide by the same rules as other linters. If the disable all option is specified either on command line or in.golang.yml fileslinters:disable-all: true, custom linters will be disabled; they can be re-enabled by adding themto thelinters:enable list, or providing the enabled option on the command line,golangci-lint run -Eexample.
Your linter must implement one or moregolang.org/x/tools/go/analysis.Analyzer structs.Your project should also usego.mod. All versions of libraries that overlapgolangci-lint (including replacedlibraries) MUST be set to the same version asgolangci-lint. You can see the versions by runninggo version -m golangci-lint.
You'll also need to create a go file likeplugin/example.go. This MUST be in the packagemain, and define avariable of nameAnalyzerPlugin. TheAnalyzerPlugin instance MUST implement the following interface:
type AnalyzerPlugin interface { GetAnalyzers() []*analysis.Analyzer}The type ofAnalyzerPlugin is not important, but is by conventiontype analyzerPlugin struct {}. Seeplugin/example.go for more info.
To build the plugin, from the root project directory, rungo build -buildmode=plugin plugin/example.go. This will create a plugin*.sofile that can be copied into your project or another well known location for usage in golangci-lint.
* Sorry, I haven't found a way to enablego get functionality for plugins yet. If you know how, let me know!
** Alternately, you can use the-o /path/to/location/example.so output flag to have it put it there for you.
About
example linter that can be used as a plugin for github.com/golangci/golangci-lint
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors2
Uh oh!
There was an error while loading.Please reload this page.