Switch forEach loop to for of syntax
[poolifier.git] / CONTRIBUTING.md
index d5e6430f05ef0e323dc467a56548bd750ccf6a6a..25e44a18d6db95248bbbda29b082a5e392dbecef 100644 (file)
@@ -3,26 +3,23 @@
 [![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard)  
 This repo use standard js style, please use it if you want to contribute  
 Take tasks from todo list, develop a new feature or fix a bug and do a pull request.  
-Another thing that you can do to contribute is to build something on top of ring-election and link ring-election to your project
+Another thing that you can do to contribute is to build something on top of poolifier and link poolifier to your project
 
-Please ask your PR to be merged on **master** branch.
+Please do your PR on **master** branch.
 
-**How to run tests**
-
-**Unit tests and Coverage**
+**How to run unit tests and coverage**
 
 ```bash
-  npm run test
-  npm run coverage
+  npm test && npm run coverage
 ```
 
-**How to check if your new code is standard style**
+**How to check if your new code is standard JS style**
 
 ```bash
   npm run lint
 ```
 
-**How to lint and format (with prettier) your code**
+**How to format and lint to standard JS style your code**
 
 ```bash
   npm run format && npm run lint:fix