Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.36 KB

CONTRIBUTING.md

File metadata and controls

36 lines (27 loc) · 1.36 KB

Contribution Guidelines

Thanks for contributing to our project 🎉👍!

😉 Code of Conduct

Everyone parcipating in this project must accept our Code of Conduct which rules the friendly together of all contributors.

❔ Questions

Please ask questions on Gitter. You will get a faster answer there and don't disturb maintainers and contributors in the issue tracker.

✉️ Issues and Pull Requests

If you found a bug or have an idea how to improve or add a new feature, you're welcome to open an issue. Please keep in mind this guidelines and check if there is already an issue with the same content like yours.

Feel free to open a pull request if you fixed a bug or added or improved a feature.

🎨 Code Style

This project is using a custom code style. Please see existing code files for more information.

Summary of the most important guidelines:

  • Files must always end with an empty line

  • Brackets are always written in the same line and with a space

function testThis() {
    return "hello!";
}
  • There must be no space in front of commands like if and while
while(i < 5) {
    if(e === 3) {
        return true;
    }
}