You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Week1/README.md
+30-5Lines changed: 30 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -25,17 +25,42 @@ In week one we will discuss the following topics:
25
25
- Live Server
26
26
- Bracket Pair Colorizer
27
27
28
-
2. Install the ESLint tool globally by issuing the following command from the command line:
28
+
2. Modify the VSCode User Settings to include the settings listed below. If a particular setting is already present in your User Settings, make sure that the setting value listed below is used and change it if necessary.
29
+
30
+
To open your user and workspace settings, use the following VS Code menu command:
31
+
32
+
- On Windows/Linux - **File** > **Preferences** > **Settings**
33
+
- On macOS - **Code** > **Preferences** > **Settings**
34
+
35
+
Then, click on the `{ }` button in the top-right corner of the settings screen to access the settings in JSON format.
36
+
37
+
```json
38
+
/// Place your settings in this file to overwrite the default settings
39
+
{
40
+
"editor.detectIndentation": false,
41
+
"editor.formatOnSave": true,
42
+
"editor.formatOnType": true,
43
+
"editor.minimap.enabled": false,
44
+
"editor.renderIndentGuides": true,
45
+
"editor.tabSize": 2,
46
+
"files.autoSave": "onFocusChange",
47
+
"prettier.printWidth": 100,
48
+
"prettier.singleQuote": true,
49
+
"prettier.trailingComma": "es5"
50
+
}
51
+
```
52
+
53
+
3. Install the ESLint CLI tool globally by issuing the following command from the command line:
29
54
30
55
```
31
-
npm install -g eslint
56
+
npm install -g eslint-cli
32
57
```
33
58
34
-
3. Fork this repository (i.e., **JavaScript2**) and clone your fork to your laptop.
59
+
4. Fork this repository (i.e., **JavaScript2**) and clone your fork to your laptop.
35
60
36
-
4. Open the `JavaScript2` folder from the cloned repository in VSCode.
61
+
5. Open the `JavaScript2` folder from the cloned repository in VSCode.
37
62
38
-
5. Open a terminal window in VSCode and type the following command:
63
+
6. Open a terminal window in VSCode and type the following command:
0 commit comments