-
Notifications
You must be signed in to change notification settings - Fork 24
Dev's Guide: Setting up frontend IDE
Ashar Fuadi edited this page Aug 25, 2024
·
13 revisions
This sections explains how to set up IDE for local frontend development.
Any IDE, but we highly recommend using VS Code. This section will only cover setup on VS Code.
-
Open VS Code.
-
Open
judgels-client
directory. The project should now be ready. -
Install EditorConfig and Prettier extensions.
-
Open Settings, then open the
settings.json
, and add the following config:"[javascript]": { "editor.tabSize": 2, "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[javascriptreact]": { "editor.tabSize": 2, "editor.defaultFormatter": "esbenp.prettier-vscode" }, "editor.formatOnSave": true,
-
You're done!