Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 727 Bytes

CONTRIBUTING.md

File metadata and controls

19 lines (15 loc) · 727 Bytes

Request new features or report bugs by opening an issue on GitHub or commenting on the NexusMods mod pages.

To submit a patch, please open a pull request on GitHub. If you are thinking of making a large contribution, open an issue for it before starting work.

Please note the license of the project before committing your work.

To make it easier to review and accept your pull request, please follow these guidelines:

  1. Make a new branch on your fork and use that to open a pull request of your changes.
  2. No trailing whitespaces.
  3. Save your indentation as spaces. Tab size is 4 spaces.
  4. Use the following format for curly brackets to be consistent with the rest:
if (true) {
  doThing(1);
  doThing(2);
}