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
.
- Fork the repo on Github.
- Create a new feature branch and switch to it:
git checkout -b myfeature
- Write code!
- Test your code!
- Run:
npm test
- Add your changes:
git add -A
- Commit your changes:
git commit -m 'Short message'
- Push changes to your branch:
git push
. - Submit a PR request via GitHub!
Start reading our code and you'll get the hang of it. We optimize for readability. Some basics:
- USE ESLINT AND PRETTIER
- Indent using two spaces (soft tabs)
- Use semicolons (
;
) - Inlines braces:
// This is good
if ( true ) {
}
// This is bad
if ( false )
{
}