chat.js is written in JavaScript.
#Setup
- Fork chat.js and clone it on your system.
- Create a new branch out off
master
for your fix/feature.git checkout new-feature master
- Add/Modify code.
- Write equivalent documentation.
- Push your branch.
- Pull request. :)
#Things to remember
- Run the
grunt build
task before committing changes insrc/chat.js
. - Use tabs. No spaces.
- Do not fix multiple issues in a single commit. Keep them one thing per commit so that they can be picked easily incase only few commits require to be merged.
- Before submitting a patch, rebase your branch on upstream
master
to make life easier for the merger.