-
Notifications
You must be signed in to change notification settings - Fork 18
Code Editor Setup
Visual Studio Code (VSCode) can be installed from the official site.
In order for VSCode to work well with the types of files LATE uses, we need to install a few extensions. There are also some recommended ones that just make the coding experience easier as well.
Navigate to the Extensions (Ctrl+Shift+X) panel on the sidebar. Next to the names of the packages below the package-ids are given. Search for the extensions by name or and ensure its the right package ID before installing.
- ESLint
dbaeumer.vscode-eslint - Vetur
octref.vetur
- Bracket Pair Colorizer
coenraads.bracket-pair-colorizer - GitLens
eamodio.gitlens
VSCode can automatically format our JS and HTML if we set the following properties in the settings. We will use the Workspace Settings instead of User Settings so that these rules only apply to LATE and don't interfere with other projects you code in VSCode.
In settings.json (Ctrl + ,) make sure the following properties are set as such in Workspace Settings:
...
"editor.tabSize": 2,
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
}
],
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatter.html": "js-beautify-html"
...VSCode comes with an integrated terminal (Ctrl + `) that makes running commands without leaving the editor super easy! You can also manage multiple terminals and split them. Use this to run $ npm run frontend on one side and $ npm run backend on the other!
Remember, team, the scope of what we are working on. Our goal is to make our own lives and that of our peers easier.
LATE Stack Documentation | Learning Resources | Flowchart | LATE Discord Server Invite
Backend | Frontend | Terminology
Learn LATE
- FreeCodeCamp
- Git
- Web Basics
- HTML
- CSS [coming soon]
- JS [coming soon]
- VueJS [coming soon]
- Node [coming soon]
- MongoDB [coming soon]
How LATE Works

