Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 982 Bytes

Contribution.md

File metadata and controls

45 lines (33 loc) · 982 Bytes

Contributing to News360


  • Before jumping into a PR be sure to search existing PRs or issues for an open or closed item that relates to your submission.

Developing

The development branch is development. This is the branch that all pull requests should be made against.

To develop locally:

  1. Fork this repository to your own GitHub account and then clone it to your local device.

    git clone https://github.com/Scriptonauts/News360.git
  2. Create a new branch:

    git checkout -b MY_BRANCH_NAME
    
  3. Install npm:

    npm install
    
  4. Start developing and watch for code changes:

    ionic serve
    

Linting

To check the formatting of your code:

npm run lint
npm run stylelint