Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e53a7e8

Browse files
committed
Updates README to include required User Settings
1 parent 4f4219c commit e53a7e8

File tree

1 file changed

+30
-5
lines changed

1 file changed

+30
-5
lines changed

Week1/README.md

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,42 @@ In week one we will discuss the following topics:
2525
- Live Server
2626
- Bracket Pair Colorizer
2727

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:
2954

3055
```
31-
npm install -g eslint
56+
npm install -g eslint-cli
3257
```
3358

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.
3560

36-
4. Open the `JavaScript2` folder from the cloned repository in VSCode.
61+
5. Open the `JavaScript2` folder from the cloned repository in VSCode.
3762

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:
3964

4065
```
4166
npm install

0 commit comments

Comments
 (0)