-
Notifications
You must be signed in to change notification settings - Fork 33
Code Style
Toksaitov Dmitrii Alexandrovich edited this page Nov 8, 2023
·
2 revisions
Please use the standard Java Code Style with the exceptions listed below. You can find a detailed description of the style here on the official Oracle website.
The list of exceptions to the Java Code Style used in this project as of November 9, 2023:
- Always use 4 spaces to indent code everywhere.
- Use spaces around arithmetic binary operators, except for multiplicative operations (
*,/,%).