## What is Vitals? Vitals is a plugin for the Spout engine that includes many features that makes running a game server easier to administrate.
Kohle (Project Lead) |
Denkfaehigkeit (Developer) |
---|
## Pull Request Guidelines / Code Conventions:
- If / for / while / switch statement: if (conditions && stuff) {
- Method: public void method(Object paramObject) {
- No Tabs, Spaces only!
- No trailing whitespace
- Mid-statement newlines at a 200 column limit
- camelCase, no under_scores except constants
- Constants in full caps with underscores
- Keep the same formatting style everywhere
- Sign-off on all commits!
- Finished product must compile successfully with
mvn
! - No merges should be included in pull requests unless the pull request's purpose is a merge.
- Number of commits in a pull request should be kept to one commit and all additional commits must be squashed. Pull requests that make multiple changes should have one commit per change.
- Pull requests must include any applicable license headers. (These are generated when running
mvn
)