From 446601002b4931433741304819e1942ac3f958b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luj=C3=A1n=20Fernaud?= Date: Fri, 24 Aug 2018 08:57:24 +0100 Subject: [PATCH] Add the JavaScript Standard Style to linting.md I think it's important to also mention the [JavaScript Standard Style](https://standardjs.com/index.html) in the linting section as it is [one of the most used](https://github.com/collections/clean-code-linters), and offers and different perspective. --- js-in-the-real-world/linting.md | 1 + 1 file changed, 1 insertion(+) diff --git a/js-in-the-real-world/linting.md b/js-in-the-real-world/linting.md index c96a3a0a..2f2cf8ee 100644 --- a/js-in-the-real-world/linting.md +++ b/js-in-the-real-world/linting.md @@ -4,6 +4,7 @@ Code style is important! Having a consistent set of style rules for things such 1. The [Airbnb Style Guide](https://github.com/airbnb/javascript) is one of the most popular. It is also very well formatted and easy to read. 2. Google also has their own [style guide](https://google.github.io/styleguide/jsguide.html) for JavaScript. +3. The [JavaScript Standard Style](https://standardjs.com/rules.html). Used by companies like NPM and GitHub, among [others](https://standardjs.com/index.html#who-uses-javascript-standard-style). ### Linting