Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 615 Bytes

CONTRIBUTING.md

File metadata and controls

24 lines (21 loc) · 615 Bytes

How to contribute

If you want to contribute to the project, you should follow these requirements:

  • Be at least 14 Years old
  • Have experience with Maven and Java
  • Follow the Code of Conduct
  • Follow the code style written there:

Code style

In order to edit the code, you should follow the following scheme. Note that everything should be documented (only the functions, not the inside) and you cannot edit only the style of the source.

/**
 * Test Class
 *
 * @author Lorenzo Rocca
 */
public class Test {
  public void testFunction(String param) {
    System.out.println("Easy Code!");
  }
}