Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 1.31 KB

README.md

File metadata and controls

35 lines (30 loc) · 1.31 KB

manga-viewer

A simple manga viewer using Manga Eden API - http://www.mangaeden.com/api/

Coding Guidelines

  1. script.js must always be validated using JSLint. http://www.jslint.com
  2. Use camelCase on variables and functions
  3. Use 4 spaces on indentions
  4. Refrain from using server side programming languages

Repo Guidelines

  1. Our base branch is master
  2. Branch out of master when doing a new module / feature
  3. Branch names should be min of 2 words max of 3 delimited by - e.g. home-ux
  4. For bug fixes add prefix fix to the branch name e.g. fix-scripts-js
  5. For commit messages please avoid being ambiguous e.g. Refactored function foo and bar in scripts.js
  6. Avoid commiting large chucks of code. Segregate.
  7. When done make sure your branch is updated, git checkout master
  8. Pull the latest version of master git pull
  9. Return to your branch git checkout branch-name
  10. Merge your branch to the latest version of master git merge master, fix conflicts if there are
  11. Push it to remote: git push origin branch-name
  12. Create a Pull Request for that branch merging to master.
  13. If you're sure that it will work, merge it to master.