Skip to content

Commit 23bc9b0

Browse files
committed
update VS Code
1 parent f6e4f61 commit 23bc9b0

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

challenges/react-native-ecosystem/01.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 📡 What you will learn
44

5-
- Install VSCode extensions to [code Like A Boss](https://www.youtube.com/watch?v=NisCkxU544c)
5+
- Install VS Code extensions to [code Like A Boss](https://www.youtube.com/watch?v=NisCkxU544c)
66
- Learn shorcuts that you will ship features at ligthning speed
77

88
## 👾 Before we start the exercise
@@ -11,7 +11,7 @@
1111

1212
## 👨‍🚀 Exercise 1
1313

14-
- [ ] Launch VSCode Quick Open (`command` + `p` or `ctrl` + `p`), paste the following command, and press enter.
14+
- [ ] Launch VS Code Quick Open (`command` + `p` or `ctrl` + `p`), paste the following command, and press enter.
1515

1616
```console
1717
ext install dsznajder.es7-react-js-snippets nathanchapman.javascriptsnippets chakrounanas.turbo-console-log
@@ -26,13 +26,15 @@ Example:
2626

2727
## tsrnfs + tab
2828

29-
... paste the result here
29+
... paste an example result here
3030

3131
## tsrnfe + tab
3232

33-
... paste the result here
33+
... paste an example result here
3434
```
3535

36+
Feel free to copy/paste some [React Native snippets from this list](https://davidl.fr/pattern).
37+
3638
- [ ] On you new `cheatcodes.md` write down [React Native components shortcuts](https://github.com/dsznajder/vscode-es7-javascript-react-snippets#react-native-components) you prefer (_Are you a `const` or a `function` person?_)
3739

3840
**Hint:** Using `ts` before `rn**` wil automatically add typescript definitions 🚀
@@ -45,7 +47,7 @@ Example:
4547

4648
### 👽 Bonus
4749

48-
- [ ] Install these fancy VSCode extensions and [let me know what do you think](https://twitter.com/intent/tweet?related=flexbox_&text=The+VSCode+setup+for+React+Native+from+@flexbox_+is+amazing+because)
50+
- [ ] Install these fancy VS Code extensions and [let me know what do you think](https://twitter.com/intent/tweet?related=flexbox_&text=The+VS+Code+setup+for+React+Native+from+@flexbox_+is+amazing+because)
4951

5052
```console
5153
ext install naumovs.color-highlight vincaslt.highlight-matching-tag visualstudioexptteam.vscodeintellicode

challenges/react-native-ecosystem/02.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ When you adhere to standards, developers know what to expect, learnability is in
77
## 📡 What you will learn
88

99
- Having concistency across every files in your codebase
10-
- Install linter plugins on VSCode
10+
- Install linter plugins on VS Code
1111
- Run a linter with the cli
1212

1313
## 👾 Before we start the exercise
@@ -16,12 +16,17 @@ When you adhere to standards, developers know what to expect, learnability is in
1616

1717
## 👨‍🚀 Exercise 2
1818

19-
- [ ] Launch VSCode Quick Open (`cmd` + `p` or `ctrl` + `p`), paste the following command, and press enter.
19+
- [ ] Launch VS Code Quick Open (`cmd` + `p` or `ctrl` + `p`), paste the following command, and press enter.
2020

2121
```console
2222
ext install dbaeumer.vscode-eslint esbenp.prettier-vscode
2323
```
2424

25+
Here is a list of the extensions you are installing:
26+
27+
- [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint)
28+
- [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)
29+
2530
- [ ] Automatically format your code on each save. Go to **Code** (or **File**) > **Preferences** > **Settings**
2631

2732
1. type `format` on the search input

challenges/react-native-foundation/02.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44

55
- Use the `expo-cli`
66
- Install a library with `yarn`
7-
- Use VSCode to code from your computer
7+
- Use VS Code to code from your computer
88

99
## 👾 Before we start the exercise
1010

11-
- You should have VSCode on your laptop
11+
- You should have VS Code installed on your machine
1212
- You should have the [`expo-cli` installed](https://docs.expo.io/get-started/installation/)
1313

1414
## 👨‍🚀 Exercise 2
1515

16-
- [ ] On your terminal create a new application with
16+
- [ ] Copy-paste the following commands in your terminal
1717

1818
```console
1919
expo init spacecraft -t expo-template-blank-typescript

0 commit comments

Comments
 (0)