Skip to content
Kristian Sons edited this page Jan 16, 2015 · 2 revisions

Developer Guide

All kinds of contributions are welcome. This is the rough process contributing to the exporter:

  1. Fork the repository
  2. Implement the features / fix the bugs
  3. Commit the changes to your fork and sign-off your commits
  4. Check that your code meets our conventions
  5. Contribute your changes using pull requests.

With signing of your commits you confirm you are aware that you commit your changes to an OSS project!

Code Conventions

We added a grunt task that checks automatically if your code meets our code conventions. It is based on flake8. You will need to install grunt and flake to run the task.

To install grunt, just run npm:

npm install

To install flake8, just run pip:

pip install flake8

Then you can run flake8 with the project-specific settings:

grunt flake8
Clone this wiki locally