8000 Added some suggested extensions for VS Code based on observations as … · muses-code-js/js-intro-workshop@46bfd20 · GitHub
[go: up one dir, main page]

Skip to content

Commit 46bfd20

Browse files
FizzBuzz791ButenkoT
authored andcommitted
Added some suggested extensions for VS Code based on observations as a mentor (we asked all the coders to install VS Code at the start of the day) (#36)
1. Todo Highlight - Make it easier to see the points where code should be tried. 2. Code Spell Checker - A lot of problems were down to simple spelling mistakes, might help make the process smoother. 3. Prettier - Formatting makes a huge difference on the readability of the code, this should help automate some of the formatting for new coders.
1 parent 275b504 commit 46bfd20

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.idea/
1+
.idea/
2+
.vscode/launch.json

.vscode/extensions.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3+
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4+
5+
// List of extensions which should be recommended for users of this workspace.
6+
"recommendations": [
7+
"wayou.vscode-todo-highlight",
8+
"streetsidesoftware.code-spell-checker",
9+
"esbenp.prettier-vscode"
10+
],
11+
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
12+
"unwantedRecommendations": [
13+
14+
]
15+
}

0 commit comments

Comments
 (0)
0