Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 582 Bytes

contributing.md

File metadata and controls

13 lines (8 loc) · 582 Bytes

Contributing

Firstly - thanks for thinking about contributing!

Code Quality

The build has three tools that are used to ensure code quality:

  1. Checkstyle - this is used to ensure that the code adheres to a consistent style.
  2. PMD - this is used to find common programming flaws.
  3. SpotBugs - this is used to find common bugs in Java code.

Before submitting a pull request, please ensure that the code passes all of these checks. You can run them locally by executing mvn clean verify.