If you are looking to help to with a code contribution our project uses javascript
as the main language. We don't use any front-end framework. If you don't feel ready to make a code contribution yet, no problem! You can also check out the issues tracker
For creating a pull request, make sure the target branch is main
, otherwise, we will simply reject your pull request.
We Use Github Flow, So All Code Changes Happen Through Pull Requests
Pull requests are the best way to propose changes to the codebase (we use Github Flow). We actively welcome your pull requests:
- Fork the repo and create your branch from
main
. - If you've changed APIs, update the documentation.
- Make sure your code lints.
In short, when you submit code changes, your submissions are understood to be under the same MIT License that covers the project. Feel free to contact the maintainers if that's a concern.
Report bugs using Github's issues
We use GitHub issues to track public bugs. Report a bug by opening a new issue; it's that easy!
- Use tab size of 4 rather than space
- Brace placement should follow K&R style
- Naming should follow Camel Case naming practice
- Add jsDoc on everything you write to better explain what your code do
This code below is an example of how you should write your code:
let awesomeVariable;
const NICE_CONST = 727;
class CowThatMoo {
// Some code...
}
/**
* A function that increase number by 1 and return it
*
* @param {Number} number Input number
* @returns {Number} Number increased by 1
*/
function someThing(number) {
return number + 1;
}
while (x == y) {
someThing();
someThingElse();
}
Be sure to add an emoji before every commit message 😎
By contributing, you agree that your contributions will be licensed under its MIT License.