Skip to content

Latest commit

 

History

History
28 lines (27 loc) · 1.16 KB

CONTRIBUTING.md

File metadata and controls

28 lines (27 loc) · 1.16 KB

Contributing

Merger Contributor License Agreement

  • You will only submit contributions where you have authored 100% of the content.
  • You will only submit contributions to which you have the necessary rights. This means that if you are employed you received the necessary permissions from your employer to make the contribution.
  • Whatever content you contribute will be provided under the project licences

Project Licences

Code conventions

For coding you must use Java naming convention but in case of acronyms you need to use our rule for acronyms.

  • Acronyms:

    For acronyms, we are going to use CamelCase for classes and inverseCamelCase for fields because is easier to understand and read.

    OK

    • public class HttpSender
    • private HttpSender httpSender
    • HttpSender httpSender

    NOK

    • public class HTTPSender
    • private HTTPSender HTTPSender
    • HTTPSender HTTPSender

Commit conventions: