From 31cd69ea84c5d42db86ab9249a79537508dbb7c8 Mon Sep 17 00:00:00 2001 From: vinayak Date: Sun, 3 May 2020 20:08:32 +0530 Subject: [PATCH] Update CONTRIBUTING.md Co-authored-by: Christian Clauss --- CONTRIBUTING.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9b3d62875..71a083c4c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -46,16 +46,15 @@ Algorithms in this repo should not be how-to examples for existing JavaScript pa #### Coding Style -We want your work to be readable by others; therefore, we encourage you to note the following: -- Must follow [JavaScript Standard Style](https://standardjs.com/) +To maximize the readability and correctness of our code, we require that new submissions follow [JavaScript Standard Style](https://standardjs.com/) - Command to install JavaScript Standard Style ``` - $ npm install standard --save-dev - ``` + $ npm install standard --save-dev + ``` - Usage ``` - $ standard - ``` + $ standard MyFile.js // if that fails, try: npx standard MyFile.js + ``` - Use camelCase for identifier names (variables and functions) - Names start with a letter