-
-
Notifications
You must be signed in to change notification settings - Fork 3
Programming Guidelines
AM-Mikey edited this page Feb 26, 2026
·
8 revisions
Here are a list of guidelines to follow when developing for Laputa
- Work in your own branch, submit a pull request to Luka when you're ready.
- Clean your own code. Pull requests should not create any additional bugs.
- Any bugfix not related to a larger change should go in its own branch.
- Avoid merging main into your branch. Merge individual files as necessary.
- Delete your branch after a PR merge if it is not already deleted.
- If there's an issue with the Code Standards, or some problem that affects the entire repo, discuss it with Luka before making changes.
- If there's a inherent structural problem with a script or set of scripts, discuss it with Luka before refactoring code.
- Add any bugs you don't fix or don't plan to fix in the near future to the github issues page and tag them. Include screenshots or video.
- Delete github issues when fixed.
- Don't delete Outdated folders, they exist to keep code that might be useful in the future.
- Trim all trailing whitespace from code.
- Don't shadow class scripts, see code standards doc.
- Dont declare a function to return void
func Function(arg): -> void