Why your team needs a set of code conventions and standards

Based on some recent conversations I have had. I wanted to document my thoughts on code conventions and why it's so important to have them agreed upon and implemented in a project as early as possible. I also recently set up tooling to enforce conventions from scratch. So I will share that as well.

Coding conventions are pivotal to getting set up as early on in a product’s lifecycle as possible. They are a set of guardrails around the style and structure of your code. They can also help prevent bugs in our code.

Some examples of code conventions are. JavaScript style guides built with ESLint such as Airbnb, Google and Standard. PEP 8 style guide for Python. Stylelint for CSS.

As you can see from languages like JavaScript, enforcing conventions through tools like ESLint helps teams write code consistently. For example, Airbnb’s style guide came about because they had hundreds of engineers working on the same code base.

Let’s talk through a few more reasons that having these conventions help products scale.

Scaling an engineering team

This is a huge win for having conventions built in from the start. When a team starts to scale and new engineers start contributing code. You will quickly see everyone will write code differently. Having a set of styles and conventions built-in and automated means any new engineer will have to conform to that style. Even if they don’t personally agree with a style choice, it’s always better to conform than to splinter off and do your own thing.

I’ve found personally and heard from others that having a robust set of conventions in place creates passive learning. For example, I have worked on a number of projects that uses ESLint for JavaScript, and having the tooling in place means when I see an issue with my code, I can trace that to an article online that documents why it should be avoided, what is a better approach and some examples on how to improve my code.

Improve output and confidence of your code

Once everyone is on the same page, you will quickly find having conventions built-in that you don’t need to keep having the same conversations when reviewing a pull request or pairing with another engineer. It’s baked in and those styles or conventions are fixed at the point of writing.

Secondly, I find that my confidence in my own code and the code of others dramatically improves. As we will see later on, conventions can go quite deep into why writing some code in a certain way may look ok but can open up to bugs later on. Then in a lot of cases providing alternative approaches. This makes our code better as well as more consistent. Helping us find and fix bugs more easily, or avoid them altogether.

Last little bit on this point, as conventions can be built-in and automated. We can add them into our CI/CD workflows as well as in our code editors. Having these setups means engineers now have multiple opportunities to spot and fix these issues. Increasing that confidence in the code we ship to our users.

Why should we care about this now, I want to start building?

Coding conventions at the start of building out a new product can feel sometimes a bit of a buzzkill. When I prototype ideas I always make sure I am using some sensible conventions, that way I can be confident if I have created the next Uber I can quickly put it out into the real world and know it exists on some solid foundations.

The tools I use most commonly are ESLint, Stylelint and Prettier as a lot of my projects are JavaScript based.

ESLint and StyleLint will automatically scan your code for patterns and syntax errors. It's pluggable so you can easily add in a sensible default set of rules, but also add your own.

Prettier will scan your code for formatting errors and automatically fix them for you on save. You can also configure it to do this on commit hooks etc.

From the docs of Prettier, you get a better idea of where the difference exists between the two.

What’s great is we can easily combine them to both fix formatting errors and also larger coding pattern errors which could lead to bugs later down the line.

Deeper dive into getting code conventions setup for a JavaScript project

I will be writing a more in-depth article on how to get up and running on a JavaScript project with code conventions that will cover your, HTML, CSS, and JavaScript. You will see how to hook your IDE up so you can enforce those styles when you save your code and see errors inline. As well as setting up Husky Git Hooks to run the code analysis in a push to prevent any errors from being pushed to your repository.