Linting best practices
Linters look at a program's soruce code and find problems automatically.
They are a common feature of pull request automations because they ensure that "obvious" bugs do not make it to PROD
The NIT approach
Code reviewers leave little comments on the code called "nits" that the team can ignore until broader reviews.
Nits are helpful as future references but prevent blocking important changes
Auto Formatter
Tools that help apply code style rules based on the style guide your team has chosen automatically
Example for GO:
Linting automatically in CI
Developers should never wait for a human reviewer to let them know if their code is linted and styled correctly
Cheap and convenient to run linting and formatting within CI steps
Even better solution in CI:
Examples of linters:
DeepSource pricing can be found here: https://deepsource.com/pricing/
Any team with more than one developer working in the same codebase should setup a linter to catch obvious bugs
Last updated