Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 858 Bytes

CONTRIBUTING.md

File metadata and controls

37 lines (28 loc) · 858 Bytes

How to contribute

I am really happy that you are willing contribute to my project.

A friendly reminder to follow our code of conduct. It may be found in CODE_OF_CONDUCT.md.

Submitting Changes

  1. Fork the repo on Github.
  2. Create a new feature branch and switch to it: git checkout -b myfeature
  3. Write code!
  4. Test your code!
  5. Run: npm test
  6. Add your changes: git add -A
  7. Commit your changes: git commit -m 'Short message'
  8. Push changes to your branch: git push.
  9. Submit a PR request via GitHub!

Coding Conventions

Start reading our code and you'll get the hang of it. We optimize for readability. Some basics:

  1. USE ESLINT AND PRETTIER
  2. Indent using two spaces (soft tabs)
  3. Use semicolons (;)
  4. Inlines braces:
// This is good
if ( true ) {

}

// This is bad
if ( false )
{

}