-
-
Notifications
You must be signed in to change notification settings - Fork 18
GUI Style Checking
TJ Neuenfeldt edited this page Apr 20, 2024
·
3 revisions
Formatting our code makes it more readable for others, so it is important to format your code whenever you push commits!
Run
./style.sh --fix
.
Running the script without arguments shows needs to be fixed, and including --fix
actually fixes it. This formats any Python and C++ code.
In order to format Vue code, cd into the frontend folder and run bun run format
. This runs prettier which is HTML/Javascript formatter.