Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.18 KB

CONTRIBUTING.md

File metadata and controls

32 lines (24 loc) · 1.18 KB

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change. Please note we have a code of conduct, please follow it in all your interactions with the project.

Licensing of contributed material

This project is under MIT licence, see LICENSE

Keep in mind as you contribute, that code, docs and other material submitted to this project will be considered licensed under the same terms as the rest of the work.

Coding

Copyright

All code files should have this header:

/*
 * Use of this source code is governed by the MIT license that can be
 * found in the LICENSE file.
 */

Then you do not need to put your name with copyright on files.

Best practices for codding

  • Your code must be documented under JavaDoc standard.
  • Your code must be tested.
  • Make sample code if necessary.
  • Document it if necessary.