From 1a39cf845483e5601fb22ff8882045e7fd9b20a0 Mon Sep 17 00:00:00 2001 From: Simon Fortier Date: Wed, 3 Jan 2018 20:07:48 -0500 Subject: [PATCH] Create CONTRIBUTING.md --- CONTRIBUTING.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..ba30ee1 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,19 @@ +## General guide + +[Collaboration guide](https://github.com/simon987/Much-Assembly-Required/wiki/Collaboration-Guide) + +## Before creating a pull request + +Here small unordered list of guidelines to read before creating a pull request +- Use java <= 1.8 features +- Please follow [Google's Java style guide](https://google.github.io/styleguide/javaguide.html) +- Constants (e.g. the energy cost of an in-game action) should be loaded from config.properties +- The project is separated into multiple modules, the `Server` module and its plugins. Plugins should +not depend on another plugin to compile or to run. +(e.g. NPC plugin shouldn't import `net.simon987.biomassplugin` ) +- Use `Logmanager.LOGGER` to log messages to the console. Use `.fine()` for debugging messages and `.info()` for +info for more important messages +that are not too frequently used. +- Do not submit a pull request for a new feature that has not been approved +by [simon987](https://github.com/simon987) in an Issue beforehand +- Please state what tests have been performed in the pull request