Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 1.75 KB

CONTRIBUTING.md

File metadata and controls

46 lines (29 loc) · 1.75 KB

Contributing to Liberty Tools

We welcome contributions, and request you follow these guidelines.

Raising issues

Please raise any bug reports on the issue tracker. Be sure to search the list to see if your issue has already been raised.

A good bug report is one that make it easy for us to understand what you were trying to do and what went wrong. Provide as much context as possible so we can try to recreate the issue.

Legal

In order to make contribution as easy as possible, we follow the same approach as the Developer's Certificate of Origin 1.1 (DCO) - that the Linux® Kernel community uses to manage code contributions.

We simply ask that when submitting a pull request for review, the developer must include a sign-off statement in the commit message.

Here is an example Signed-off-by line, which indicates that the submitter accepts the DCO:

Signed-off-by: John Doe <john.doe@example.com>

You can include this automatically when you commit a change to your local git repository using the following command:

git commit -s

Coding standards

This project follows Eclipse standard Java language coding conventions.

Please note:

  • all PRs must have passing builds

Plugin development

To learn how to setup, run, and test your development environment, follow the provided plugin development instructions.