Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 801 Bytes

CONTRIBUTING.md

File metadata and controls

26 lines (17 loc) · 801 Bytes

Contributing

Git

To contribute to the project, you can make a branch or a fork and submit a pull request. Before submitting a pull request, please ensure that you respect the code style check.

Features/Issues

If you want to add a new feature or you have an issue, simply fill a Github issue with the corresponding label.

Code Style Check

To ensure that you follow our code style, you can do the following:

  1. Install NodeJs by following the instructions at this page.
  2. Install JSCS
  3. Install JSHint
  4. Run the linter and the code style checker

The previous steps can be resumed by the following commands:

npm install -g jscs     # Install JSCS
npm install -g jshint   # Install JSHint
npm test                # Run the JSCS and JSHint