Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 647 Bytes

CONTRIBUTING.md

File metadata and controls

15 lines (14 loc) · 647 Bytes
  1. Use same style guides as in current repo e.g if no semi colons present please do not add them

  2. declare variables on own lines

    • Please do not do var temp1, temp2
    • Please do
    var temp1
    var temp2
    
  3. If using 4 spaces please stay consistant and use 4 spaces

  4. Create branches for your changes from current repo easier to maintain and handle changes

    • Make new branch for your changes git checkout -b branch-name branch-name be descriptive
    • Keep your branch up to date with main branch git pull origin main-branch
    • When changes ready to be integrated open pull request on Github.com