Skip to content

Commit 2fced8f

Browse files
committed
adding custome vscode settings
1 parent e2ce913 commit 2fced8f

File tree

6 files changed

+15589
-10959
lines changed

6 files changed

+15589
-10959
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dist-ssr
1313
*.local
1414

1515
# Editor directories and files
16-
.vscode/*
16+
1717
!.vscode/extensions.json
1818
.idea
1919
.DS_Store

.vscode/settings.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
//some of the react concepts are highlighted by these tags, make sure to install the extension: TODO Highlight
2+
3+
{
4+
"todohighlight.keywords": [
5+
{
6+
"text": "COMPONENT",
7+
"color": "#FF5733",
8+
"backgroundColor": "#FFD1BA",
9+
"description": "Used to identify React Components"
10+
},
11+
{
12+
"text": "HOOK",
13+
"color": "#121F57",
14+
"backgroundColor": "#BAFFD1",
15+
"description": "Used to identify React Hooks"
16+
},
17+
{
18+
"text": "STATE",
19+
"color": "#3357FF",
20+
"backgroundColor": "#BAD1FF",
21+
"description": "Used to identify React State management"
22+
},
23+
{
24+
"text": "EFFECT",
25+
"color": "#FF33A1",
26+
"backgroundColor": "#FFD1E8",
27+
"description": "Used to identify useEffect and other side effects"
28+
},
29+
{
30+
"text": "CORE",
31+
"color": "#651A2B",
32+
"backgroundColor": "#FFD1E8",
33+
"description": "Core React concepts"
34+
}
35+
]
36+
}

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,7 @@ If you are developing a production application, we recommend updating the config
2727
- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`
2828
- Optionally add `plugin:@typescript-eslint/stylistic-type-checked`
2929
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list
30+
31+
32+
### Following React concepts will be covered here:
33+

0 commit comments

Comments
 (0)