Conventional Comments: Stop Fighting in Code Reviews
Leonardo Montini

Leonardo Montini @balastrong

About: Awarded GitHub Star since 2023 ⭐️ and Microsoft MVP since 2024 🔷 I talk about Open Source, GitHub, and Web Development. I also run a YouTube channel called DevLeonardo, see you there!

Location:
Italy
Joined:
Jun 18, 2022

Conventional Comments: Stop Fighting in Code Reviews

Publish Date: Feb 13 '24
33 9

I’m sure you’ve heard about conventional commits, but what about conventional comments?

The Problem

Code Reviews can go terribly wrong. They're quite a delicate aspect of our daily job and require trained skills and mindset to approach them the right way.

It is so easy to get misunderstood and start pointless discussions, often overlooking critical aspects instead.

I recently discovered a tool, that is in fact a set of rules, to help focus on what really matters and avoid arguments and wasting of time.

PR Comment

Conventional Comments

The idea is similar to conventional commits, adding labels, decorators and context to your comments.

Something like this:



<label> [decorations]: <subject>

[discussion]


Enter fullscreen mode Exit fullscreen mode

Labels

This is relly similar to conventional commits, a label to define the type of the comment. It can be a suggestion, a praise, a nitpick or a proper issue.

Decorations

Here you can make a more defined scope, for example if the comment is an issue and it is about the performance, your comment might look like this:



issue(performance)


Enter fullscreen mode Exit fullscreen mode

Subject

A short summary of your comment, basically what you would write in the title of an issue.

Following the previous example:



issue(performance): This can cause an endless loop of re-renders


Enter fullscreen mode Exit fullscreen mode

Discussion

However, this might still seem sharp or a bit too vague, that's why you might need to add an extra discussion or actionable item to make it more clear and prevent possible follow-up questions.



issue(performance): This can cause an endless loop of re-renders

Do we need this in the dependency array? We can achieve the same result by moving it to Line 67.


Enter fullscreen mode Exit fullscreen mode

Conventional Comment specification

This was a brief introduction to the concept, but there is a full specification available at conventionalcomments.org.

You can find all the details on that page and I also recorded myself while scrolling through it and commenting it live, you can watch it in the video below:


Thanks for reading this article, I hope you found it interesting!

I recently launched a GitHub Community! We create Open Source projects with the goal of learning Web Development together!

Join us: https://github.com/DevLeonardoCommunity

Do you like my content? You might consider subscribing to my YouTube channel! It means a lot to me ❤️
You can find it here:
YouTube

Feel free to follow me to get notified when new articles are out ;)

Comments 9 total

  • Nick Taylor
    Nick TaylorFeb 13, 2024

    I'm a big fan of conventional comments. 👏

    Jack Nicholson nodding yes

    • Leonardo Montini
      Leonardo MontiniFeb 14, 2024

      Great! I'm going to use it at work and see what happens :D

      • Cesar Aguirre
        Cesar AguirreFeb 19, 2024

        I used Conventional Comments for a past client and noticed that slowly other team members started to use it too.

  • Pieces 🌟
    Pieces 🌟Feb 13, 2024

    Maybe I should try conventional comments. Thanks for this! 👏

  • Hussein Kizz
    Hussein Kizz Feb 14, 2024

    this is really nice, but if there was something like an IDE extension for vscode that can help give these comment conventions snippets easily, people can then use this convention more, I also started to use conventional commits only when I met this tool: github.com/Everduin94/better-commits I wish something too for comments but not a CLI just an extension perhaps!

    • Leonardo Montini
      Leonardo MontiniFeb 14, 2024

      That's a really good idea! As of today we have the official vscode extension where you can review PRs but I don't think we can request to add conventional comments there.
      I don't know if it's actually possible to build something third-party on top of that though, it would be nice!

      • Hussein Kizz
        Hussein Kizz Feb 14, 2024

        Well please do work around it, there already some comment extensions out there but they don't fully have a known convention, for example I use better comments, it just highlights comments depending on keywords I use in the comment, then comment anchor helps me track comments across codebase etc, these little things make dev life happier!

  • Finnegan Brock
    Finnegan BrockMar 6, 2024

    Thank you so much for the solution. Dear student, do you need help with your academic papers? I am sharing my gem with you all, which is canadianwritings.com/ CanadianWritings. Their team of experienced writers can assist with essays, research papers, dissertations, and more. I've used their services and was impressed with the quality of work and their professionalism. Highly recommend!

Add comment