TechReborn/.github/CONTRIBUTING.md
Foo 43c0fa9e89
Fix spelling, grammar, javadocs, and similar issues (#2784)
* fix naming in ModelSantaHat.java

* Fix grammar, spelling, and javadocs in RebornCore

* Fix spelling error in datagen

* fix missed variable name

* fix grammar, spelling, and javadoc errors

* fix grammar and spelling errors in project files

* specify indent_size in .editorconfig
2022-02-06 13:14:56 +00:00

933 B

First of all, thank you for your efforts in contributing to TechReborn project

In order to ease code review of your pull request, please, go through this checklist.

  • The code compiles.
  • The code has been developer-tested.
  • The code includes javadoc where appropriate.
  • The code is tidy (indentation, line length, no commented-out code, no spelling mistakes, etc).
  • Proper use of exceptions has been considered. It is fine to throw an exception during init.
  • Proper side usage (client vs server)
  • Logging is used appropriately. Please, do not spam log files
  • Unused imports are eliminated.
  • Warnings produced by the IDE are eliminated.
  • Are there any leftover stubs or test routines in the code?
  • Are there any hardcoded, development only things still in the code?
  • Was performance considered?
  • Corner cases well documented or any workarounds for a known limitation of the MC, Fabric, RC, etc used.