If you find a bug in the source code or a mistake in the documentation, you can help us by submitting an issue to our GitHub Repository. Even better you can submit a Pull Request with a fix. [MAKE SURE YOU READ THE STYLE GUIDE!!](https://github.com/BookingBug/dev.bookingbug.com/wiki/Style-Guide) before writing any documentation. Code Style - The javascript in the `/app` directory follows [Airbnb's Javascript style guide](https://github.com/airbnb/javascript). - The CSS follows the [BEM method](https://en.bem.info/method/). > There is a lot of deviations from these styles as the docs where needed quick, so feel free to re-write some code if it starts to get to you. Create a pull request with `git checkout -b my-branch master` then push to the branch `git push origin my-branch` If the pull request gets too outdated we may ask you to rebase and force push to update the pull request: ```shell git rebase master -i git push origin my-branch -f ```