Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.34 KB

File metadata and controls

35 lines (26 loc) · 1.34 KB

Contribution Guidelines

Thank you for your interest in contributing to Homestead! To maintain consistency and quality, please follow these rules when contributing.

Code Style & Conventions

1. Java Coding Standards

2. Spacing & Formatting

  • Use spaces around operators (a = b + c, not a=b+c).
  • Put a space after if, for, while, etc. (if (condition)).
  • Keep one blank line between methods and logical code blocks.

Pull Request (PR) Guidelines

Before Submitting a PR:

  1. Fork & Sync

    • Fork the repo and sync with the latest main branch. In case there is a development branch (e.g. dev-5.1.0.0, dev-4.3.0), fork that branch instead of the main one.
  2. Code Quality Checks

    • Ensure your code follows the style guide.
    • Run tests on your Minecraft testing server.
  3. Commit Messages

PR Submission:

  • Provide a clear title.
  • Add a detailed description:
    • What changes were made?
    • Why were they needed?
    • Link related issues (optional).