Skip to content

Latest commit

 

History

History
66 lines (42 loc) · 695 Bytes

CONTRIBUTING.md

File metadata and controls

66 lines (42 loc) · 695 Bytes

Welcome to the CONTRIBUTING.md

If you want to contribute just follow the next steps :

How to

Fork & Clone the project

git clone https://github.com/dimensi0n/stor.git

Install dependencies

npm i

Make your modifications

touch file.js

Commit your modifications

commit -m "ADD or UPDATE or FIX <file or feature>"

Create a pull request


Code style

Semicolon

🚫 Wrong :

console.log()

✅ Correct :

console.log();

Double quotes

🚫 Wrong :

console.log('hello');

✅ Correct :

console.log("hello");