DEV Community

Matheus Mina
Matheus Mina

Posted on

First steps with Go linters

Linter is a static code analysis tool used to find programming errors, bugs, leaks of code standards, and even security flaws. These tools help developers because they save time by identifying issues before they happen in the production environment. It also keeps developers from unnecessarily checking if your colleague used the team standards.

Each programming language has their own tools: Ruby has Rubocop, JS has Eslint, and Go can't be different. Searching at Awesome Go, a curated list of Go software, many tools can lint your code, but my favorite is golangci-lint. It is an aggregator of linting tools, meaning you only need one tool for multiple linters in your project.

You can run it during your development lifecycle by having it on your machine. The way to go is to install the official distribution for your operation system. After installing, you are ready to go and can run golangci-lint run at your terminal. Easy peasy! If you wish, you can also setup your favorite IDE to use it as default!

The coolest about this tool is being able to configure it using configuration files, being able to even choose which linting will be executed, what is the desired parallelism, rules for each linter, etc. To configure your project, create a .golangci.yml file and place your settings there. There is a reference file from the developers that shows all the possibilities, but it is too complex. @maratori made an excellent curation of the best configuration, and you can find it here!

Having a configuration file for your project, you can ensure that everyone has the same checkings as you during their development lifecycle. You can also use it within your CI, ensuring extra confidence when reviewing your colleagues' PR. If your team uses GitHub Actions, there is one ready-to-go action.

This is a small blog post presenting the golangci-lint tool and demonstrating how to use it. If you wish to know more about it, visit their website.

You can also read it on my personal blog.

Top comments (0)