DEV Community

Discussion on: Do you follow any coding conventions/standards?

Collapse
 
youpiwaza profile image
max

The bigger part is to add them in your linters:

  • Got one in vscode
  • Got one in a dedicated task (mostly using it before git stuff) where i can get more details.

It's kinda tedious at the beginning, but very quickly it just make you code wayyy cleaner, and it become usual you don't even think about it after the first month.

AirBNB is also great for that as it clearly explains every little thing, it's mostly a DRYer/Refacto of your code ^^.

Also using them through a proper development environement (npm for front for example), through packages, makes updates a breeze ;)