DEV Community

Cover image for Reasons Developers Hate Linters and how to fix it
Josh Marinacci
Josh Marinacci

Posted on

Reasons Developers Hate Linters and how to fix it

Automated code linters and formatters can be almost magical. They find potential errors, enforce consistency across your codebase, and speed up development at the same time. Consistency makes it easier to see what code does and where it goes wrong. Consistency makes it easier for new people to join the team. And having a tool to determine rules means your team doesn’t have to waste time bikeshedding the rules, or waste valuable code review time checking for style violations; the tools have already done it. This is the magic of automation, and the value increases when you use these tools across multiple repos. It’s a rare win / win in software development. So why did I write this blog?

I work at a company that specializes in dev tool automation, so you’d expect me to have the opinion that automated tools are good 😉. Yet, some of our customer interactions reveal that not everyone is convinced, fearing an increase in errors and disruptions to their project histories. We aim to address these concerns by offering strategies for a smoother integration of automation into your workflows.

The challenges

When a team (whether commercial or open source) considers adding tool automation, they often worry that turning on the tools will find too many problems. They worry that the team will be swamped with a backlog of issues and, the older the codebase is, not be able to make forward progress. To fight it some developers will just disable the checks for every found error, resulting in code that is not any better. Worse, they have now lost insight into the state of their codebase; making it even harder to go back and address those issues once they become invisible.

Another challenge is modifying codebase history. Some tools, like code beautifiers, can not only find errors but fix them as well.  This is great because you can upgrade the entire codebase at once, but that introduces a new problem: applying tools to the whole codebase will mess up git-blame. As a developer, I want to see which human last modified this line, but now the tool is listed instead. 

These challenges hinder the adoption of automated tools, but there is hope: incremental rollout.

diagram of elephant

Eating the elephant one bite at a time

When a team first turns on linters and formatters, they often are overwhelmed by the number of errors and warnings found. If everything is a problem then where do you focus? Which are the most important ones to fix? If the warnings are reported as errors then everything will block development. Many tools usually encourage you to treat the output as errors that prevent the code from being committed, or the branch from being merged. Once the process is smooth this actually is a good policy, but when you first start with an existing codebase, this policy will slow things down. There are a couple of ways to address this:

  • You can run the linters only on a portion of the code base. Maybe you pick just the UI and not the server, or only the database code. Or you could only run linters on changed files. The downside is that when you change only one line in a file, you are now responsible for fixing all of the issues in that file which is especially daunting if it’s a big one. (This used to happen to me all the time at my last company!).

  • Another option is to downgrade the error checking. Many linters can be configured to treat errors as warnings or to reduce the number of types of issues found. This is helpful initially but make sure your remember to revert to stricter settings eventually.

  • Finally you could just stop development for a month and fix all of the errors. Unsurprisingly, few teams want to do this due to the high cost in time and progress.

The problem with all of the above solutions is that they are still manual. The whole point of automation is to avoid manual errors. A better solution is what we call “Hold the Line”, which focuses on improving code quality without exacerbating existing issues, allowing for gradual improvement over time.

Hold the Line

Hold the line is a concept which means tools will only run on new changes, not on old code. This means you can adopt the tool without running it on your entire codebase, only the new changes. Over time you can go back and fix the older code at your leisure. 

At a previous company I had a lot of coffeescript to turn into typescript. Our policy was to only port code when already modifying that file for other reasons (bug fixes or new features). This ensured we made progress on our technical debt but not be overwhelmed by it. In some other cases we would make these changes on a line by line basis rather than file by file (such as adding extra property types to older React JS code). The point is Hold The Line lets you keep working without eating the elephant all at once.

If your tool supports Hold the Line, then absolutely turn it on. If your tool doesn’t, then use Trunk Check to run them. Trunk Check implements Hold The Line across all of the tools we have wrapped, at the level of single code lines, giving you one consistent place to manage their settings. Either way, you can now introduce checking to a new project and get immediate value on only your new code. You don’t have to go back and fix everything since the beginning. Once you get some breathing room you can slowly go back and fix issues in older code.

Marty McFly and Doc Brown looking shocked

Never Change History

Tools which can not only detect but fix issues for you don’t have the problems above. You can upgrade the entire codebase at once and be done with it. Code formatters like Prettier (my personal favorite) work like this. The problem is that even if they work perfectly, they have created a giant break in the history of the codebase.

If searching through code is like archeology, then reformatting your codebase creates a KT Boundary that obscures the real things you are looking for. We dig through old code using git blame to find when a particular line was last modified and by whom. Running a beautifier on your entire codebase will essentially reset history. Most IDEs even bundle git blame into their text editor gutters, so resetting history affects a development aide used every day. Not good! But there is a solution.

Git will show the last modifier of a particular line when using gitblame, and if the last modifier was a tool that’s what you are going to get. However, Git supports a way to filter the output using the little known --ignore-revs-file option pointing to a special file known as the .git-blame-ignore-revs file. This file contains the hashes of revisions to ignore when running git blame. GitHub respects the contents of this file, so when it renders diffs and code history it will skip those refs. 

You can also configure your local git so it always ignores the revs in that file even without using the --ignore-revs-file option:

git config blame.ignoreRevsFile .git-blame-ignore-revs
Enter fullscreen mode Exit fullscreen mode

Note, that since this is so useful, Trunk Check will automatically add it to your config. ;)

With ignore-revs in hand you can run a full codebase reformat and hide it from the git blame history. Here’s an example:

# check the current git blame
git blame somefile.txt

# reformat the codebase
trunk fmt --all
git commit -m 'reformat code'

# get the commit hash 
git log 

# put into the ignore revs file
echo "26125bcc894c7e3988985ba459967c0fb21f9194" | cat > .git-blame-ignore-revs
git add .git-blame-ignore-revs 
git commit -m 'add git blame ignore file'
git push

# turn it on by default
git config blame.ignoreRevsFile .git-blame-ignore-revs

# git blame the same file to see that it works
git blame somefile.txt
Enter fullscreen mode Exit fullscreen mode

In the above example, the 26125bcc894c7e3988985ba459967c0fb21f9194 part is the hash of the specific  commit that includes the reformat changes. Putting it into the .git-blame-ignore-revs file makes git blame (and GitHub) ignore it.

Conclusion

Tool automation is magical. It’s one of the rare win/wins in software development. For a large codebase adopting these tools wholesale can still bring disruption. Hopefully the tips above will help your team adopt automated linters and formatters. And if you want an easy way to manage them, try out Trunk Check.

Top comments (0)