codeclimate-golint is a Code Climate engine that wraps Golint. You can run it on your command line using the Code Climate CLI, or on our hosted analysis platform.
Golint is a linter for Go code. Where as Gofmt automatically reformats code, Golint suggests style issues that may need to be addressed.
- If you haven't already, install the Code Climate CLI.
- Add the following to yout Code Climate config:
plugins:
golint:
enabled: true- Run
codeclimate engines:install - You're ready to analyze! Browse into your project's folder and run
codeclimate analyze.
Like the golint binary, you can configure the minimum confidence threshold of
this engine: issues reported by golint must have a confidence value higher than
the threshold in order to be reported. The default value is 0.8, the same as
golint: you can configure your own threshold in your .codeclimate.yml:
plugins:
golint:
enabled: true
config:
min_confidence: 0.1make imageFor help with Golint, check out their documentation.
If you're running into a Code Climate issue, first look over this project's GitHub Issues, as your question may have already been covered. If not, go ahead and open a support ticket with us.