-
-
Notifications
You must be signed in to change notification settings - Fork 1
Contributing
halotroop2288 edited this page Apr 29, 2020
·
3 revisions
- Import this formatting preset to your IDE, and set it to default for any project related to halotroop.
- Always use symmetrical curly braces!
- If there is only one line of code between them, put them on the same line like this:
{ code(); }
- If there are multiple lines between them put them on separate lines like this:
- If there is only one line of code between them, put them on the same line like this:
{
codeHere();
moreCodeHere();
}
- Change your "Organize Imports" preferences to use
.*
imports after only 2 imports are used, (instead of the ridiculous default 99).